ramyhelow
5/16/2019 - 5:10 PM

Rounded Corners Drawable

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="#1c9403" />
    <!--border color and border width-->
    <stroke
        android:width="0dp"
        android:color="#d92500" />
    <!--border radius in dp-->
    <corners android:radius="40dp" />
</shape>