Próbuję utworzyć przycisk z selektorem, mój przycisk może mieć następujące stany:
- Włączony wyłączony
- Wciśnięty / Nie wciśnięty
Według wyżej wymienionych stanów. Muszę manipulować przyciskami:
- Kolor tekstu
- zdjęcie w tle
Przycisk zaczyna być wyłączony, więc powinien mieć wyłączony textColor i wyłączone tło przycisku. Ale widzę domyślny textColor (określony w stylu) i NIE MA obrazu tła!
Oto mój selektor button_selector.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="false"
android:state_enabled="false"
android:textColor="#9D9FA2"
android:drawable="@drawable/button" />
<item android:state_pressed="true"
android:state_enabled="true"
android:drawable="@drawable/button_pressed"/>
<item android:state_pressed="true"
android:state_enabled="false"
android:textColor="#9D9FA2"
android:drawable="@drawable/button"/>
<item android:state_pressed="false"
android:state_enabled="true"
android:drawable="@drawable/button"/>
</selector>
A oto moja deklaracja przycisku w pliku my layout.xml
<Button android:id="@+id/reserve_button"
android:text="@string/reserve_button"
android:layout_width="120dp"
android:layout_height="40dp"
android:layout_marginTop="10dp"
android:layout_marginLeft="20dp"
android:paddingRight="15dp"
android:layout_gravity="left"
style="@style/buttonStyle"
android:background="@drawable/button_selector" />
I wreszcie to jest mój styl (gdzie ustawiony jest mój domyślny textColor)
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="buttonStyle">
<item name="android:textStyle">bold</item>
<item name="android:textColor">#282780</item>
<item name="android:textSize">18sp</item>
</style>
</resources>
Proszę pomóż!