13 lines
401 B
XML
13 lines
401 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
<corners android:radius="95dp" />
|
||
|
<solid android:color="@color/red" />
|
||
|
<stroke
|
||
|
android:width="1dp"
|
||
|
android:color="@color/white" />
|
||
|
<padding
|
||
|
android:bottom="5dp"
|
||
|
android:left="10dp"
|
||
|
android:right="10dp"
|
||
|
android:top="5dp" />
|
||
|
</shape>
|