2012-06-05 21:07:14 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
|
|
<item android:state_pressed="true">
|
|
|
|
<shape>
|
2012-07-02 18:22:29 +00:00
|
|
|
<gradient android:angle="90"
|
|
|
|
android:startColor="#E66000"
|
|
|
|
android:endColor="#FF9500"
|
|
|
|
android:type="linear"/>
|
2012-06-05 21:07:14 +00:00
|
|
|
|
2012-07-02 18:22:29 +00:00
|
|
|
<corners android:radius="4dp"/>
|
2012-06-05 21:07:14 +00:00
|
|
|
</shape>
|
|
|
|
</item>
|
|
|
|
|
2013-07-15 21:36:13 +00:00
|
|
|
<item android:state_focused="true"
|
|
|
|
android:state_enabled="true">
|
2012-06-05 21:07:14 +00:00
|
|
|
<shape>
|
2012-07-02 18:22:29 +00:00
|
|
|
<gradient android:angle="90"
|
|
|
|
android:startColor="#D2DAE2"
|
|
|
|
android:endColor="#E3E8ED"
|
|
|
|
android:type="linear"/>
|
2012-06-05 21:07:14 +00:00
|
|
|
|
2013-07-15 21:36:13 +00:00
|
|
|
<stroke android:width="2dp"
|
|
|
|
android:color="#E66000" />
|
|
|
|
|
2012-07-02 18:22:29 +00:00
|
|
|
<corners android:radius="4dp"/>
|
2012-06-05 21:07:14 +00:00
|
|
|
</shape>
|
|
|
|
</item>
|
|
|
|
|
2013-07-15 21:36:13 +00:00
|
|
|
<item android:state_enabled="true">
|
|
|
|
<shape>
|
|
|
|
<gradient android:angle="90"
|
|
|
|
android:startColor="#D2DAE2"
|
|
|
|
android:endColor="#E3E8ED"
|
|
|
|
android:type="linear"/>
|
|
|
|
|
|
|
|
<corners android:radius="4dp"/>
|
|
|
|
</shape>
|
|
|
|
</item>
|
2012-06-05 21:07:14 +00:00
|
|
|
</selector>
|