21 lines
619 B
XML
21 lines
619 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<layer-list
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
<item>
|
||
|
|
<shape
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:shape="rectangle"
|
||
|
|
>
|
||
|
|
<solid
|
||
|
|
android:color="#FFFFFF"/>
|
||
|
|
<corners
|
||
|
|
android:radius="5dip"
|
||
|
|
/>
|
||
|
|
<stroke
|
||
|
|
android:width="0.1px"
|
||
|
|
android:color="#E0FFFF"/>
|
||
|
|
</shape>
|
||
|
|
</item>
|
||
|
|
</layer-list>
|
||
|
|
|