what-the-bank/resources/res/drawable-xxhdpi/facetec_progress_bar.xml

47 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
id="@android:id/background"
left="1dp"
top="1dp"
right="1dp"
bottom="1dp">
<shape>
<corners radius="2dp"/>
<solid color="#66000000"/>
</shape>
</item>
<item id="@android:id/progress">
<scale android:scaleWidth="100%">
<layer-list>
<item
id="@+id/progressGlow"
left="1dp"
top="1dp"
right="1dp"
bottom="1dp">
<shape
shape="rectangle"
innerRadius="4dp">
<corners radius="4dp"/>
<solid color="#66ffffff"/>
</shape>
</item>
<item
id="@+id/progressFill"
left="1dp"
top="1dp"
right="1dp"
bottom="1dp">
<shape
shape="rectangle"
innerRadius="2dp">
<corners radius="2dp"/>
<solid color="#ffffff"/>
</shape>
</item>
</layer-list>
</scale>
</item>
</layer-list>