summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/drawables/peertube/drawable/progress_bar.xml
blob: 049d4b60133142067cc9c9fd6fac437c3e4c2cad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?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>
            <corners android:radius="8dp" />
            <solid android:color="?colorSecondary" />
        </shape>
    </item>

    <item
        android:id="@android:id/progress"
        android:bottom="1dp"
        android:left="1dp"
        android:right="1dp"
        android:top="1dp">

        <scale android:scaleWidth="100%">
            <shape>
                <corners android:radius="8dp" />
                <solid android:color="?colorPrimary" />
            </shape>
        </scale>
    </item>
</layer-list>