what-the-bank/resources/res/drawable/card_red_yellow_progress_ba...

20 lines
618 B
XML
Raw Normal View History

2024-07-27 18:17:47 +07:00
<?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>