How can I make drawable circle with gradient? I would like something that looks like this
Actually I managed to do this :
With the following code :
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="oval">
            <stroke android:width="2dp" android:color="#1E90FF"/>
            <size android:width="60dp" android:height="60dp"/>
        </shape>
    </item>
</selector>


