20 lines
618 B
XML
20 lines
618 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item id="@android:id/background">
|
|
<shape>
|
|
<corners radius="3dp"/>
|
|
<solid color="#c9c6cd"/>
|
|
</shape>
|
|
</item>
|
|
<item id="@android:id/progress">
|
|
<scale
|
|
android:drawable="@drawable/red_progress_bar"
|
|
android:scaleWidth="100%"/>
|
|
</item>
|
|
<item id="@android:id/secondaryProgress">
|
|
<scale
|
|
android:drawable="@drawable/yellow_progress_bar"
|
|
android:scaleWidth="100%"/>
|
|
</item>
|
|
</layer-list>
|