-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlayer_list_all_out_style.xml
More file actions
30 lines (27 loc) · 1.11 KB
/
layer_list_all_out_style.xml
File metadata and controls
30 lines (27 loc) · 1.11 KB
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
27
28
29
30
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Define the background properties like color etc -->
<item android:id="@android:id/background">
<shape>
<gradient
android:startColor="@color/skyblue"
android:centerColor="@color/colorPrimary"
android:endColor="@color/orange"
android:angle="270" />
<corners android:radius="20dp"/>
</shape>
</item>
<!-- Define the progress properties like start color, end color etc -->
<item
android:left="5dp" android:right="5dp" android:top="5dp" android:bottom="5dp">
<shape>
<gradient
android:startColor="@color/skyblue"
android:centerColor="@color/colorPrimary"
android:centerY="1.0"
android:endColor="@color/orange"
android:angle="270" />
<solid android:color="@color/black"/>
</shape>
</item>
</layer-list>