<?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android"><item><shape android:shape="oval"><solid android:color="@color/text_color_green"/><!-- Set the same value for both width and height to get a circular shape --><size android:width="250dp" android:height="250dp"/></shape></item></selector>
<?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android"><item>
<shape android:shape="oval"><solid android:color="#e42828"/><stroke android:color="#3b91d7" android:width="5dp"/><!-- Set the same value for both width and height to get a circular shape --><size android:width="250dp" android:height="250dp"/></shape></item></selector>
<?xml version="1.0" encoding="utf-8"?><shapexmlns:android="http://schemas.android.com/apk/res/android"// here define the shapeandroid:shape="oval">
<solid// here define your colorandroid:color="#666666"/>
<size// here define your shape sizeandroid:width="120dp"android:height="120dp"/></shape>