First of all, Forgive me, my English is not good. I want to design a custom xml layout like below:
I am trying to create top curved, but I don't know how it designed!
This my output:
and my xml code:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
    android:top="100dp"
    android:bottom="10dp">
    <shape android:shape="rectangle">
        <stroke
            android:width="3dp"
            android:color="#000000" />
        <solid android:color="@android:color/background_light" />
        <corners
            android:bottomLeftRadius="0dp"
            android:bottomRightRadius="0dp"
            android:topLeftRadius="0dp"
            android:topRightRadius="0dp" />
    </shape>
</item>
And I have another question: There is a site that can make this design online?

