/TheElements/res/drawable/btn_ui_element.xml
http://thelements.googlecode.com/ · XML · 52 lines · 35 code · 3 blank · 14 comment · 0 complexity · fb1e0b391af435af237e7c5a05228d28 MD5 · raw file
- <!--
-
- <shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle">
- <gradient
- android:type="radial"
- android:startColor="#FFAA00"
- android:endColor="#FF0000"
- android:angle="0" />
- <stroke android:width="1px" android:color="#000" />
-
- <corners android:radius="5dp" />
- </shape>
- -->
- <selector xmlns:android="http://schemas.android.com/apk/res/android">
-
- <item android:state_pressed="true" >
- <shape android:shape="oval">
- <gradient
- android:startColor="#c17f05"
- android:endColor="#faac1d"
- android:angle="0" />
- <stroke
- android:width="1px"
- android:color="#000" />
- </shape>
- </item>
-
- <item android:state_focused="true" >
- <shape android:shape="oval">
- <gradient
- android:endColor="#aafaac1d"
- android:startColor="#aac17f05"
- android:angle="0" />
- <stroke
- android:width="1px"
- android:color="#A000" />
- </shape>
- </item>
-
- <item>
- <shape android:shape="oval">
- <gradient
- android:endColor="#A555"
- android:startColor="#A222"
- android:angle="90" />
- <stroke
- android:width="1px"
- android:color="#000" />
- </shape>
- </item>
- </selector>