24 lines
717 B
XML
24 lines
717 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item android:state_selected="true">
|
|
<shape android:shape="rectangle">
|
|
<solid android:color="#eeeeee"/>
|
|
</shape>
|
|
</item>
|
|
<item android:state_focused="true">
|
|
<shape android:shape="rectangle">
|
|
<solid android:color="#eeeeee"/>
|
|
</shape>
|
|
</item>
|
|
<item android:state_pressed="true">
|
|
<shape android:shape="rectangle">
|
|
<solid android:color="#eeeeee"/>
|
|
</shape>
|
|
</item>
|
|
<item>
|
|
<shape android:shape="rectangle">
|
|
<solid android:color="#f7f8f8"/>
|
|
</shape>
|
|
</item>
|
|
</selector>
|