19 lines
510 B
XML
19 lines
510 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item >
|
|
<shape android:shape="oval" >
|
|
<size android:width="24dp" android:height="24dp"/>
|
|
<solid android:color="@color/content_tertiary"/>
|
|
</shape>
|
|
</item>
|
|
|
|
<item
|
|
android:top="5dp"
|
|
android:bottom="5dp"
|
|
android:left="5dp"
|
|
android:right="5dp"
|
|
android:drawable="@drawable/ic_close_white_24dp"/>
|
|
</layer-list>
|
|
|
|
|