56 lines
1.6 KiB
XML
56 lines
1.6 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
<item android:state_pressed="true" >
|
||
|
<shape>
|
||
|
<solid
|
||
|
android:color="#827b2d" />
|
||
|
<stroke
|
||
|
android:width="1dp"
|
||
|
android:color="#444444" />
|
||
|
<corners
|
||
|
android:radius="3dp" />
|
||
|
</shape>
|
||
|
</item>
|
||
|
<item android:state_selected="true" >
|
||
|
<shape>
|
||
|
<gradient
|
||
|
android:startColor="#d0bf00"
|
||
|
android:endColor="#d09f00"
|
||
|
android:angle="180" />
|
||
|
<stroke
|
||
|
android:width="1dp"
|
||
|
android:color="#444444" />
|
||
|
<corners
|
||
|
android:radius="4dp" />
|
||
|
</shape>
|
||
|
</item>
|
||
|
|
||
|
<item android:state_enabled="false" >
|
||
|
<shape>
|
||
|
<gradient
|
||
|
android:startColor="#dddddd"
|
||
|
android:endColor="#cccccc"
|
||
|
android:angle="180" />
|
||
|
<stroke
|
||
|
android:width="1dp"
|
||
|
android:color="#444444" />
|
||
|
<corners
|
||
|
android:radius="4dp" />
|
||
|
</shape>
|
||
|
</item>
|
||
|
|
||
|
<item>
|
||
|
<shape>
|
||
|
<gradient
|
||
|
android:startColor="#908f90"
|
||
|
android:endColor="#494748"
|
||
|
android:angle="180" />
|
||
|
<stroke
|
||
|
android:width="1dp"
|
||
|
android:color="#444444" />
|
||
|
<corners
|
||
|
android:radius="4dp" />
|
||
|
</shape>
|
||
|
</item>
|
||
|
</selector>
|