android: customized text selector
- by Yang
I wanted to design a customized text selector that changed the text color when user clicks the TextView. But got the following error:
java.lang.RuntimeException: Unable to start activity ComponentInfo{}: android.view.InflateException: Binary XML file line #55: Error inflating class
here is what I have:
res/text_selector.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="false"
android:state_focused="true"
android:drawable="@color/black" />
<item android:state_pressed="true"
android:drawable="@color/blue" />
<item android:state_focused="true"
android:drawable="@color/black" />
</selector>
layout/textview.xml
<TextView android:id = "@+id/last_page_button"
android:text="@string/last_page_button_string"
android:gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ffffff"
android:textColor = "@drawable/text_selector"
android:layout_weight="1" />
values/color.xml
<resources>
<color name="white">#ffffffff</color>
<color name="black">#ff000000</color>
<color name="blue">#ffccddff</color>