I met a difficulty in Android programming, I want to make a shape like the picture "supposed.bmp" I uploaded. But I don't know how to do that, I only made one like "actual.bmp" I uploaded by the code below.
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<corners
android:radius="10dp"/>
<solid
android:color="#199900"/>
<size
android:height="20dp"
android:width="20dp"/>
<stroke
android:width="2dp"
android:color="#004A00"/>
</shape>
please help me to correct the code above, thank you very much!