21 lines
650 B
XML
21 lines
650 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
<item>
|
||
|
<shape>
|
||
|
<gradient
|
||
|
android:startColor="#23af3e"
|
||
|
android:endColor="#23af3e"
|
||
|
android:angle="270" />
|
||
|
<stroke
|
||
|
android:width="2dp"
|
||
|
android:color="#000" />
|
||
|
<corners
|
||
|
android:radius="25dp" />
|
||
|
<padding
|
||
|
android:left="6dp"
|
||
|
android:top="6dp"
|
||
|
android:right="6dp"
|
||
|
android:bottom="6dp" />
|
||
|
</shape>
|
||
|
</item>
|
||
|
</selector>
|