Weather/res/drawable/preference_safe_high_level.xml
2021-05-10 10:13:34 +02:00

26 lines
903 B
XML

<?xml version="1.0" encoding="utf-8"?>
<level-list
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:maxLevel="1">
<layer-list>
<item>
<shape android:shape="oval">
<solid android:color="@color/safe_level_high" />
<corners android:radius="@dimen/_5dp" />
</shape>
</item>
<item>
<shape android:shape="oval">
<solid android:color="@color/safe_level_dark" />
<corners android:radius="@dimen/_5dp" />
</shape>
</item>
</layer-list>
</item>
<item android:maxLevel="2">
<shape android:shape="oval">
<solid android:color="@color/safe_level_high" />
<corners android:radius="@dimen/_5dp" />
</shape>
</item>
</level-list>