Drawable shape like this one

Try this :

enter image description here

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

    <item
        android:bottom="3dp"
        android:left="-22dp"
        android:right="3dp"
        android:top="3dp">
        <shape android:shape="rectangle">
            <solid android:color="@color/transperent" />

            <stroke
                android:width="2dp"
                android:color="@color/black" />
        </shape>
    </item>


</layer-list>

Leave a Comment