android中去掉ListView控件中的分割线

通过设置android:divider="@null" ,可以去掉ListView控件中的分割线

也可以自定义分割线的颜色,比如:

    <ListView
android:id="@+id/list2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:divider="@android:color/holo_orange_dark"
android:dividerHeight="1dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

当然也可以把分割线设成图片之类的,如果设置了android:divider属性,那么同时需要设置android:dividerHeight属性,我这边试了一下,不设会显示不出来分割线。

上一篇:On the fly test


下一篇:springmvc学习笔记(简介及使用)