I want to make the background of my layout in android as given below I tried in android studio using layer list and shapes but could not get result anyone expert here please help me how to make the background as given below
I Have tried this code but have not gotten my result. I want a background drawable.
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<corners android:topRightRadius="15dp" android:topLeftRadius="15dp"
android:bottomRightRadius="15dp"/>
<solid android:color="@color/white"/>
</shape>
I also use Layer list I have no idea how I can get my result

Try with this