How to create a rect with max rounded corners?
I tried:
<shape android:shape="rectangle" xmlns:android="http://schemas.android.com/apk/res/android">
<size android:width="44dp"
android:height="100dp"/>
<solid android:color="#8c51ff"/>
<corners android:radius="24dp"/>
</shape>
You can create a rectangle like this :
Hope this answers your question.