Is it possible to make line to be like this with xml? or there's some way to do that..?
I already made some drawable with shape but it's not really like i want
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
android:bottomLeftRadius="30dp"
android:bottomRightRadius="30dp"
android:topLeftRadius="0dp"
android:topRightRadius="0dp" />
<padding
android:bottom="0dp"
android:left="0dp"
android:right="0dp"
android:top="0dp" />
<stroke
android:width="0.8dp"
android:color="@color/colorPrimaryDark" />
<solid android:color="@android:color/transparent" />
</shape>
Try this
USE like this
OUTPUT
EDIT
Try this
OUTPUT
We can create a drawable file also for this. May be helpful for someone.
Drawable file:
Result :