11 lines
346 B
XML
11 lines
346 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:shape="oval" >
|
||
|
<gradient
|
||
|
android:startColor="@color/gray1"
|
||
|
android:endColor="@color/gray2"
|
||
|
android:angle="90" />
|
||
|
<stroke
|
||
|
android:width="6dp"
|
||
|
android:color="@color/gray2" />
|
||
|
</shape>
|