5
안드로이드 사용자 정의 버튼; 텍스트 색상 변경
다음과 같이 다른 상태에서 배경 드로어 블을 변경하는 버튼을 만들었습니다. <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를 변경하려고하지만 할 수 없다는 것입니다. 이미 android : textColor 및 android : color를 시도했지만 …