ฉันสร้างปุ่มที่เปลี่ยนพื้นหลังที่สามารถวาดได้ในสถานะต่างๆด้วยวิธีนี้
<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"
/>
มีใครได้รับเบาะแสหรือไม่?