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>
|
|
|
|
|
|
|
|
<item android:state_enabled="true">
|
|
|
|
<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
|
|
|
|
2012-07-02 18:22:29 +00:00
|
|
|
<corners android:radius="4dp"/>
|
2012-06-05 21:07:14 +00:00
|
|
|
</shape>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
</selector>
|