您的位置:首页 > 其它

横、竖分割线

2016-05-31 18:02 295 查看
竖分割线:

<View
android:layout_width="0.5px"
android:layout_height="120dp"
android:background="#B8B8B8"
android:visibility="visible" /> <!-- 竖直线 -->

横分割线:
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_marginLeft="1dp"
android:layout_marginRight="1dp"
android:background="@drawable/divider_horizontal_line"/> <!-- 这里用的图片,也可以用颜色<pre name="code" class="html">android:background="#B8B8B8"-->

                                            
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: