17 lines
496 B
XML
17 lines
496 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
<item
|
||
|
left="2dp"
|
||
|
right="2dp">
|
||
|
<shape shape="rectangle">
|
||
|
<solid color="@android:color/white"/>
|
||
|
<corners
|
||
|
topLeftRadius="3dp"
|
||
|
topRightRadius="3dp"
|
||
|
bottomLeftRadius="0dp"
|
||
|
bottomRightRadius="0dp"/>
|
||
|
<size height="3dp"/>
|
||
|
</shape>
|
||
|
</item>
|
||
|
</layer-list>
|