1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:tools="http://schemas.android.com/tools"
            xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="rectangle">
            <gradient
                android:angle="-90"
                android:startColor="#FDAC43"
                android:centerColor="#FECD8B"
                android:endColor="@color/white"/>
        </shape>
    </item>
    <item android:bottom="46dp"
        android:end="46dp">
        <shape android:shape="oval"
            android:tint="#FECD8B">
        </shape>
    </item>
 
</layer-list>