12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?xml version="1.0" encoding="utf-8"?>
- <selector xmlns:android="http://schemas.android.com/apk/res/android">
-
- <item android:state_pressed="true" >
- <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-
- <item><shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
- <gradient android:angle="270" android:endColor="#99000000" android:startColor="#99000000" />
- </shape></item>
-
- <item android:bottom="1px" android:right="1px"><shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
- <gradient android:angle="270" android:endColor="#47ffffff" android:startColor="#97ffffff" />
- </shape></item>
- </layer-list>
- </item>
-
-
- <item android:state_focused="true" >
- <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-
- <item><shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
- <gradient android:angle="270" android:endColor="#22000000" android:startColor="#22000000" />
- </shape></item>
-
- <item android:bottom="1px" android:right="1px"><shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
- <gradient android:angle="270" android:endColor="#47ffffff" android:startColor="#97ffffff" />
- </shape></item>
- </layer-list>
- </item>
- <item>
- <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-
- <item>
- <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
- <gradient android:angle="270" android:endColor="#55000000" android:startColor="#55000000" />
- </shape></item>
-
- <item android:bottom="1px" android:right="1px">
- <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
- <gradient android:angle="270" android:endColor="#47ffffff" android:startColor="#97ffffff" />
- </shape>
- </item>
- </layer-list>
- </item>
- </selector>
|