safedispatch-mobile/safeDispatch/src/main/res/drawable/style_spinner.xml

27 lines
793 B
XML
Raw Normal View History

2022-03-10 14:31:03 +00:00
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" >
<shape>
<solid
android:color="#a01010" />
<stroke
android:width="1dp"
android:color="#2f6699" />
<corners
android:radius="3dp" />
</shape>
</item>
<item>
<shape>
<gradient
android:startColor="#ededed"
android:endColor="#c9c9c9"
android:angle="270" />
<stroke
android:width="1dp"
android:color="#2f6699" />
<corners
android:radius="4dp" />
</shape>
</item>
</selector>