Android开发学习——画横线竖线

画横线/竖线

竖线
<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"
/>

 

posted @ 2016-12-15 16:23  蒙小米  阅读(2570)  评论(0编辑  收藏  举报