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

23 lines
759 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">
<shape android:shape="rectangle">
<corners android:radius="1dp"/>
<gradient
android:startColor="#fff"
android:endColor="#fff"/>
</shape>
</item>
<item android:id="@android:id/progress">
<clip>
<shape android:shape="rectangle">
<corners android:radius="1dp"/>
<gradient
android:startColor="#32cad5"
android:endColor="#60b4ff"
android:angle="45"/>
</shape>
</clip>
</item>
</layer-list>