11 lines
371 B
XML
11 lines
371 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:shape="rectangle">
|
||
|
<corners
|
||
|
android:bottomLeftRadius="4dp"
|
||
|
android:topLeftRadius="4dp" />
|
||
|
<solid android:color="@color/switch_button_active_light" />
|
||
|
<stroke
|
||
|
android:width="1dp"
|
||
|
android:color="@color/switch_button_active_stroke_light" />
|
||
|
</shape>
|