I want to made the listView that will looks like this
I suppose i need to use Frame layout in every Item and set margins to fit the left shape half outside the single item, but I dont know how to adjust it properly
I already have drawable shape I only need to set it up like on the picuture
edit: Maybe I need to place the drawable shape In my custom rounded_item_that looks like that
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<stroke
android:width="1dp"
android:color="@color/gray" />
<solid android:color="@color/white" />
<padding
android:left="5dp"
android:right="5dp"
android:top="5dp"
android:bottom="10dp"/>
<corners android:radius="5dp" />
</shape>
This might help you