5
Android özelleştirilmiş düğmesi; metin rengini değiştirme
Arka planı farklı durumlarda çizilebilir olarak değiştiren bir düğme yaptım, bu şekilde: <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 --> Burada sorun da çizilebilir ile yaptığım gibi textColor değiştirmeye çalışıyorum ama yapamıyorum. Android: textColor ve android: color'ı zaten …