android LinearLayout容器添加分割线
在Android3.0及以上版本,LinearLayout支持直接显示分隔线。设置标签的a
ndroid:showDividers属性可以再LinearLayout的相应位置显示分隔线
。如果有多个LinearLayout,显示效果和在LinearLayout之间加分隔线是一样的。
android:showDividers属性可以设置如下4个值:
no
方法一:可以放置一个ImageView组件,然后将其设置为分割线的颜色或图片。分割线View的定义代码如下: <ImageView android:layout_width="fill_parent" android:layout_height="1dp" android:background="#CDC9C9" />