16 lines
574 B
XML
16 lines
574 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item>
|
|
<shape android:shape="rectangle">
|
|
<solid android:color="#ffeff8f3" />
|
|
<corners
|
|
android:bottomLeftRadius="10dp"
|
|
android:bottomRightRadius="10dp"
|
|
android:topLeftRadius="10dp"
|
|
android:topRightRadius="10dp" />
|
|
<stroke
|
|
android:width="1dip"
|
|
android:color="@color/base_col" />
|
|
</shape>
|
|
</item>
|
|
</layer-list> |