-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcustom_progress_bar_style.xml
30 lines (27 loc) · 1.1 KB
/
custom_progress_bar_style.xml
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">
<item android:id="@android:id/background" android:height="50dp">
<shape>
<gradient
android:startColor="@color/skyblue"
android:centerColor="@color/colorPrimary"
android:endColor="@color/orange"
android:angle="270" />
<corners android:radius="20dp"/>
</shape>
</item>
<!-- add another layer to design more etc -->
<!-- <item android:id="@android:id/progress" android:height="10dp">-->
<!-- <clip>-->
<!-- <shape>-->
<!-- <gradient-->
<!-- android:startColor="@color/skyblue"-->
<!-- android:centerColor="@color/colorPrimary"-->
<!-- android:centerY="1.0"-->
<!-- android:endColor="@color/orange"-->
<!-- android:angle="270"-->
<!-- />-->
<!-- </shape>-->
<!-- </clip>-->
<!-- </item>-->
</layer-list>