คำถามติดแท็ก android-selector

5
ปุ่มปรับแต่ง Android; เปลี่ยนสีข้อความ
ฉันสร้างปุ่มที่เปลี่ยนพื้นหลังที่สามารถวาดได้ในสถานะต่างๆด้วยวิธีนี้ <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="true" android:drawable="@drawable/btn_location_pressed" /> <!-- pressed --> <item android:state_focused="true" android:drawable="@drawable/btn_location_pressed"/> <!-- focused --> <item android:drawable="@drawable/btn_location"/> <!-- default --> ปัญหาที่นี่คือฉันยังพยายามเปลี่ยน textColor เช่นเดียวกับ drawable แต่ฉันไม่สามารถ ฉันลองใช้ android แล้ว: textColor และ android: color แต่อันแรกไม่ทำงานในขณะที่วินาทีเปลี่ยนพื้นหลังของฉัน รหัสต่อไปเป็นส่วนหนึ่งของเค้าโครงของฉัน เกี่ยวกับสีข้อความมันใช้งานได้กับสีข้อความสถานะปกติเท่านั้นดังนั้นจึงไม่เปลี่ยนเป็นสีขาวในขณะที่กด <Button android:id="@+id/location_name" android:layout_width="fill_parent" android:layout_height="wrap_content" android:paddingTop="5dp" android:background="@drawable/location" android:textSize="15sp" android:textColor="@color/location_color" android:textColorHighlight="#FFFFFF" /> มีใครได้รับเบาะแสหรือไม่?

9
ตัวเลือก Android & สีข้อความ
ฉันต้องการที่เรียบง่ายTextViewที่จะประพฤติทางsimple_list_item_1ในListViewไม่ นี่คือ XML: <TextView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_height="wrap_content" android:layout_width="fill_parent" android:gravity="center" android:focusable="true" android:minHeight="?android:attr/listPreferredItemHeight" android:textAppearance="?android:attr/textAppearanceLarge" android:background="@android:drawable/list_selector_background" /> ทุกอย่างทำงานได้ยกเว้นสีข้อความที่ (คาดว่า) จะไม่เปลี่ยนแปลงในสถานะโฟกัส ฉันจะเปลี่ยนเป็นtextAppearanceLargeInverseอย่างไร
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.