画横线/竖线

竖线
<View
android:layout_width="1dp"
android:layout_height="match_parent"
android:background="#66CCFF"
android:layout_gravity="center_horizontal"
/> 横线
<View
android:layout_height="1px"
android:layout_width="match_parent"
android:background="#66CCFF"
/>
05-08 15:49