20 lines
500 B
XML
20 lines
500 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="oval">
|
|
|
|
<!-- fill color -->
|
|
<solid android:color="@color/navy" />
|
|
|
|
<!-- radius -->
|
|
<stroke
|
|
android:width="1dp"
|
|
android:color="@color/navy" />
|
|
|
|
<!-- corners -->
|
|
<corners
|
|
android:bottomLeftRadius="2dp"
|
|
android:bottomRightRadius="2dp"
|
|
android:topLeftRadius="2dp"
|
|
android:topRightRadius="2dp" />
|
|
</shape> |