Files
clinx02-androidpebble/app/src/main/res/drawable/progress_bar_red.xml

32 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Define the background properties like color etc -->
<item android:id="@android:id/background">
<shape>
<corners android:radius="10dp"/>
<gradient
android:startColor="#101010"
android:centerColor="#202020"
android:centerY="0.5"
android:endColor="#101010"
android:angle="270"
/>
</shape>
</item>
<!-- Define the progress properties like start color, end color etc -->
<item android:id="@android:id/progress">
<clip>
<shape>
<corners android:radius="5dp"/>
<gradient
android:startColor="#ff0000"
android:centerColor="#ffa0a0"
android:centerY="0.5"
android:endColor="#ff0000"
android:angle="270"
/>
</shape>
</clip>
</item>
</layer-list>