OsmAnd/OsmAnd/res/drawable/size_progressbar_light.xml
2016-01-22 10:32:33 +02:00

18 lines
No EOL
473 B
XML

<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>
<solid android:color="#475259"/>
</shape>
</item>
<!-- Define the progress properties like start color, end color etc -->
<item android:id="@android:id/progress">
<clip>
<shape>
<solid android:color="@color/color_distance"/>
</shape>
</clip>
</item>
</layer-list>