summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/res/drawable/lockscreen_shortcuts_phone_background.xml
blob: e3cae612b5ca0c78d1bc5c488bf86a2d2bbd252e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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="#333333" />
            <size android:height="@dimen/phone_height" android:width="@dimen/phone_width" />
            <corners android:bottomLeftRadius="15dp" android:bottomRightRadius="15dp" />
        </shape>
    </item>
    <item android:bottom="@dimen/phone_bottom_padding" android:right="@dimen/phone_side_padding" android:left="@dimen/phone_side_padding">
        <shape
            android:shape="rectangle">
            <solid
                android:color="@android:color/black" />
        </shape>
    </item>
</layer-list>