BESTMobile/android/mobile/res/drawable/listbackgrnd.xml

34 lines
797 B
XML
Raw Normal View History

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">
2012-10-25 14:45:46 +00:00
<item android:state_pressed="true" >
<shape>
<gradient
android:startColor="#ebebeb"
android:endColor="#b6b4b6"
android:angle="270" />
<stroke
android:width="1dp"
android:color="#cc0000" />
</shape>
</item>
<item android:state_pressed="false" >
<shape>
<gradient
android:startColor="#ffffff"
android:endColor="#ffffff"
android:angle="270" />
</shape>
</item>
<item android:state_focused="true">
<shape>
<gradient
android:startColor="#ffffff"
android:endColor="#ffffff"
android:angle="270" />
<stroke
android:width="1dp"
android:color="#009900" />
</shape>
</item>
2012-09-06 17:38:46 +00:00
</selector>