I want to create a button background (or the button itself) that will look like the one shown below.

I am doing this currently with an image. I tried to create one using the following XML, but it doesnβt look as expected.
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval"> <solid android:color="#f0600000"/> <stroke android:width="10dp" android:color="#FFFF6666"/> </shape>
In fact, I want a round button with a 3 pixel shadow and 1/4 width in red around the white circle. I failed with the shadow part at all. Thanks for any help.
source share