summaryrefslogtreecommitdiff
path: root/app/src/normal/res/drawable/background_red.xml
blob: 0189357cbee76a21272906e39247670bd3e51d7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?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="@color/bg_red_1"/>
            <size android:width="200dp" android:height="250dp" />
        </shape>
    </item>
    <item
        android:bottom="150dp"

        android:top="-100dp"
        >
        <shape android:shape="oval">
            <gradient
                android:startColor="@color/bg_red_2"
                android:endColor="@color/bg_red_3"
                android:angle="270"
                android:useLevel="false"
                />
            <size android:width="200dp" android:height="250dp" />
        </shape>
    </item>

</layer-list>