I will show you how to draw horizontal line in android layout design in xml. Its very simple to make a line using xml.
Please try it your self.
Just write this in your xml layout, this will create horizontal line,
and also change desire color in it.
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#e2e2e2"
android:paddingTop="17dp" />
Thanks.
Please try it your self.
Just write this in your xml layout, this will create horizontal line,
and also change desire color in it.
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#e2e2e2"
android:paddingTop="17dp" />
Thanks.
nice
ReplyDelete