mch_progress_bar_states.xml
1.1 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
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:id="@android:id/background">
<shape>
<gradient
android:startColor="#66CCFF"
android:centerColor="#66CCFF"
android:endColor="#66CCFF"
/>
</shape>
</item>
<!--
<item android:id="@android:id/secondaryProgress">
<clip>
<shape>
<gradient
android:startColor="#234"
android:centerColor="#234"
android:endColor="#a24"
/>
</shape>
</clip>
</item>
-->
<item android:id="@android:id/progress">
<clip>
<shape>
<gradient
android:startColor="#3366FF"
android:centerColor="#3366FF"
android:endColor="#3366FF"
/>
</shape>
</clip>
</item>
</layer-list>