|
1 <?xml version="1.0" encoding="utf-8"?> |
|
2 <selector xmlns:android="http://schemas.android.com/apk/res/android"> |
|
3 |
|
4 <item android:state_pressed="true"> |
|
5 <shape> |
|
6 <gradient android:angle="90" |
|
7 android:startColor="#E66000" |
|
8 android:endColor="#FF9500" |
|
9 android:type="linear"/> |
|
10 |
|
11 <corners android:radius="4dp"/> |
|
12 </shape> |
|
13 </item> |
|
14 |
|
15 <item android:state_focused="true" |
|
16 android:state_enabled="true"> |
|
17 <shape> |
|
18 <gradient android:angle="90" |
|
19 android:startColor="#D2DAE2" |
|
20 android:endColor="#E3E8ED" |
|
21 android:type="linear"/> |
|
22 |
|
23 <stroke android:width="2dp" |
|
24 android:color="#E66000" /> |
|
25 |
|
26 <corners android:radius="4dp"/> |
|
27 </shape> |
|
28 </item> |
|
29 |
|
30 <item android:state_enabled="true"> |
|
31 <shape> |
|
32 <gradient android:angle="90" |
|
33 android:startColor="#D2DAE2" |
|
34 android:endColor="#E3E8ED" |
|
35 android:type="linear"/> |
|
36 |
|
37 <corners android:radius="4dp"/> |
|
38 </shape> |
|
39 </item> |
|
40 </selector> |