2012-09-06 17:38:46 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<selector
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<item android:state_pressed="false">
|
|
|
|
<shape>
|
|
|
|
<gradient
|
2012-10-25 14:45:46 +00:00
|
|
|
android:startColor="#b6b4b6"
|
2012-09-06 17:38:46 +00:00
|
|
|
android:endColor="#b6b4b6"
|
2012-10-25 14:45:46 +00:00
|
|
|
android:centerColor="#ebebeb"
|
2012-09-06 17:38:46 +00:00
|
|
|
android:angle="270" />
|
|
|
|
<stroke
|
2012-10-25 14:45:46 +00:00
|
|
|
android:width="2dp"
|
2012-09-06 17:38:46 +00:00
|
|
|
android:color="#b4b5b4" />
|
|
|
|
<corners
|
2012-10-25 14:45:46 +00:00
|
|
|
android:radius="25dp" />
|
2012-09-06 17:38:46 +00:00
|
|
|
<padding
|
2012-10-25 14:45:46 +00:00
|
|
|
android:left="20dp"
|
2012-09-06 17:38:46 +00:00
|
|
|
android:top="10dp"
|
2012-10-25 14:45:46 +00:00
|
|
|
android:right="20dp"
|
2012-09-06 17:38:46 +00:00
|
|
|
android:bottom="10dp" />
|
|
|
|
</shape>
|
|
|
|
</item>
|
|
|
|
<item android:state_pressed="true"
|
|
|
|
android:drawable="@drawable/focused_application_background_static" />
|
|
|
|
<item android:state_focused="true"
|
|
|
|
android:drawable="@drawable/focused_application_background_static" />
|
|
|
|
</selector>
|