summaryrefslogtreecommitdiff
path: root/core/src/main/res/drawable/progress_bar_horizontal_dark.xml
blob: 73ad5b37ccac40e8e9c7e27a3dc33ee61d1c5caf (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="#33FFFFFF"/>
        </shape>
    </item>
    <item android:id="@android:id/progress">
        <clip>
            <shape>
                <solid android:color="@color/holo_blue_dark"/>
            </shape>
        </clip>
    </item>
</layer-list>