safedispatch-mobile/safeDispatch/src/main/res/drawable/hytera_style_header.xml
2022-03-14 11:53:00 +02:00

27 lines
793 B
XML

<?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="0dp"
android:color="#000000" />
<corners
android:radius="0dp" />
</shape>
</item>
<item>
<shape>
<gradient
android:startColor="#908f90"
android:endColor="#494748"
android:angle="270" />
<stroke
android:width="0dp"
android:color="#000000" />
<corners
android:radius="0dp" />
</shape>
</item>
</selector>