12 lines
467 B
XML
12 lines
467 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
<item>
|
||
|
|
<shape android:shape="rectangle">
|
||
|
|
<solid android:color="@color/white"/>
|
||
|
|
<stroke android:width="2dp" android:color="#000000"/>
|
||
|
|
<corners android:radius="26dp"/>
|
||
|
|
<padding android:left="12dp" android:right="12dp" android:top="8dp" android:bottom="8dp"/>
|
||
|
|
</shape>
|
||
|
|
</item>
|
||
|
|
</selector>
|