2016-09-09 19:19:51 +00:00
|
|
|
<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>
|
2021-07-20 09:43:44 +00:00
|
|
|
<solid android:color="@color/widget_bar_background" />
|
2016-09-09 19:19:51 +00:00
|
|
|
<corners android:radius="@dimen/bar_radius" />
|
|
|
|
|
</shape>
|
|
|
|
|
</item>
|
|
|
|
|
|
|
|
|
|
<!-- Define the progress properties like start color, end color etc -->
|
|
|
|
|
<item android:id="@android:id/progress">
|
|
|
|
|
<clip>
|
|
|
|
|
<shape>
|
|
|
|
|
<solid android:color="@color/hpColor" />
|
|
|
|
|
<corners android:radius="@dimen/bar_radius" />
|
|
|
|
|
</shape>
|
|
|
|
|
</clip>
|
|
|
|
|
</item>
|
|
|
|
|
</layer-list>
|