17 lines
539 B
XML
17 lines
539 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item id="@+id/gradientDrawable">
|
|
<shape shape="rectangle">
|
|
<stroke
|
|
width="1dp"
|
|
color="#000000"/>
|
|
<corners
|
|
topLeftRadius="3dp"
|
|
topRightRadius="3dp"
|
|
bottomLeftRadius="3dp"
|
|
bottomRightRadius="3dp"/>
|
|
<solid color="@android:color/transparent"/>
|
|
</shape>
|
|
</item>
|
|
</layer-list>
|