欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

给LinearLayout的内部的view全部设置上分隔drawable(空白)

程序员文章站 2022-05-05 10:10:06
...
设置<LinearLayout>的分隔线

只需要设置这个参数即可,drawable可以是一张图片,也可以是一个shape

android:divider="@drawable/linear_layout_line"

如果要设置为透明的区域,这样设置shape即可

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="@android:color/transparent"/>
    <size android:height="10dp"/>
</shape>

注意一定要设置高度


另外还有一个参数android:showDividers控制divider绘制在哪里


有4个值可选

none:不显示分隔线;
beginning:在LinearLayout的开始处显示分隔线;
end:在Linearlayout的结尾处显示分隔线;
middle:在LinearLayout中的每两个组件间显示分隔线;