首页 > 代码库 > Android中添加竖线和横线的方法

Android中添加竖线和横线的方法

竖线

<View  
    android:layout_width="1dip"
    android:layout_height="match_parent"
    />


横线

<View  android:layout_height="1px"
           android:layout_width="match_parent"

/>

Android中添加竖线和横线的方法