jimu-decompiled/resources/res/drawable/progress_list.xml
2025-05-13 19:24:51 +02:00

31 lines
959 B
XML

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<clip>
<shape>
<gradient
android:startColor="@color/bg_white"
android:endColor="@color/bg_white"/>
</shape>
</clip>
</item>
<item android:id="@android:id/secondaryProgress">
<clip>
<shape>
<gradient
android:startColor="@color/colorPrimary"
android:endColor="@color/colorPrimary"/>
</shape>
</clip>
</item>
<item android:id="@android:id/progress">
<clip>
<shape>
<gradient
android:startColor="@color/colorPrimary"
android:endColor="@color/colorPrimary"/>
</shape>
</clip>
</item>
</layer-list>