example xml for the circle ``` <shape xmlns:and...
# android
r
example xml for the circle
Copy code
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">
    <solid
        android:color="@color/myColor"/>
</shape>
1