View를 사용하여 width, height의 크기를 정하고 background로 선의 색상을 지정하면 수직, 수평선이 만들어진다.
<View
android:layout_width="1dp"
android:layout_height="match_parent"
android:background="#dcd7d7" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#dcd7d7" />