summaryrefslogtreecommitdiff
path: root/core/src/main/res/drawable/progress_bar_horizontal_light.xml
blob: a1a7129e9ae1b8d9c1cd2ca3f7eea4e0c7f05ee8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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>
            <solid android:color="#33212121"/>
        </shape>
    </item>
    <item android:id="@android:id/progress">
        <clip>
            <shape>
                <solid android:color="@color/holo_blue_light"/>
            </shape>
        </clip>
    </item>
</layer-list>