Someone knows how to insert that type of lines separating the textview fields ?
Like this:
Use something like:
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="?android:attr/listDivider"/>
anyway you can look it up more on:
use like this
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@android:color/darker_gray"/>
Use the code below to draw the line between the textViews and put margins on the left and right side
<ImageView
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:src="#000" />