16 lines
431 B
XML
16 lines
431 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:shape="rectangle">
|
||
|
|
<solid android:color="#eeffffff" />
|
||
|
|
<corners android:radius="10dp" />
|
||
|
|
<stroke
|
||
|
|
android:width="1.5dp"
|
||
|
|
android:color="#CDC7C7" />
|
||
|
|
|
||
|
|
<padding
|
||
|
|
android:left="10dp"
|
||
|
|
android:top="10dp"
|
||
|
|
android:right="10dp"
|
||
|
|
android:bottom="10dp" />
|
||
|
|
</shape>
|