12 lines
408 B
XML
12 lines
408 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="?android:colorPrimary" />
|
||
|
<corners android:radius="56dp" />
|
||
|
<size
|
||
|
android:width="48dp"
|
||
|
android:height="24dp" />
|
||
|
</shape>
|
||
|
</item>
|
||
|
</layer-list>
|