Android给页面添加横线和竖线

竖线

<View  
    android:layout_width="1dip" 
    android:layout_height="match_parent"
    android:background="#000000"
    android:layout_gravity="center_horizontal"
    />

 

横线

<View  android:layout_height="1px" 
           android:layout_width="match_parent"
           android:background="#000000"

/>

posted @ 2016-03-02 09:47  ChHM  阅读(771)  评论(0编辑  收藏  举报