30 lines
No EOL
771 B
XML
30 lines
No EOL
771 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>
|
|
<gradient
|
|
android:startColor="#475259"
|
|
android:centerColor="#475259"
|
|
android:centerY="1.0"
|
|
android:endColor="#475259"
|
|
android:angle="270"
|
|
/>
|
|
</shape>
|
|
</item>
|
|
|
|
<!-- Define the progress properties like start color, end color etc -->
|
|
<item android:id="@android:id/progress">
|
|
<clip>
|
|
<shape>
|
|
<gradient
|
|
android:startColor="@color/color_distance"
|
|
android:centerColor="@color/color_distance"
|
|
android:centerY="1.0"
|
|
android:endColor="@color/color_distance"
|
|
android:angle="270"
|
|
/>
|
|
</shape>
|
|
</clip>
|
|
</item>
|
|
</layer-list> |