2014-06-29 07:59:51 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<item android:state_pressed="true" >
|
|
|
|
<shape android:shape="rectangle" >
|
|
|
|
<padding
|
|
|
|
android:bottom="6dip"
|
|
|
|
android:left="6dip"
|
|
|
|
android:right="6dip"
|
|
|
|
android:top="6dip" />
|
2014-06-29 16:31:37 -04:00
|
|
|
<solid android:color="#ebebeb" />
|
2014-06-29 07:59:51 -04:00
|
|
|
<stroke android:color="#cccccc" android:width="1.5dip" />
|
|
|
|
</shape>
|
|
|
|
</item>
|
|
|
|
<item android:state_focused="true">
|
|
|
|
<shape android:shape="rectangle" >
|
|
|
|
<padding
|
|
|
|
android:bottom="6dip"
|
|
|
|
android:left="6dip"
|
|
|
|
android:right="6dip"
|
|
|
|
android:top="6dip" />
|
|
|
|
<solid android:color="#ebebeb"/>
|
2014-06-29 16:31:37 -04:00
|
|
|
<stroke android:color="#cccccc" android:width="1.5dip" />
|
2014-06-29 07:59:51 -04:00
|
|
|
</shape>
|
|
|
|
</item>
|
|
|
|
<item >
|
|
|
|
<shape android:shape="rectangle" >
|
|
|
|
<padding
|
|
|
|
android:bottom="6dip"
|
|
|
|
android:left="6dip"
|
|
|
|
android:right="6dip"
|
|
|
|
android:top="6dip" />
|
|
|
|
<solid android:color="#ffffff" />
|
2014-06-29 16:31:37 -04:00
|
|
|
<stroke android:color="#cccccc" android:width="1.5dip" />
|
2014-06-29 07:59:51 -04:00
|
|
|
</shape>
|
|
|
|
</item>
|
|
|
|
</selector>
|