我使用了两个listview,就像这样:

<ListView
   android:id="@+id/ListView"
   android:text="@string/Website"
   android:layout_height="30px"
   android:layout_width="150px"
   android:scrollbars="none"
   android:transcriptMode="normal"/>
<ListView
   android:id="@+id/ListView1"
   android:text="@string/Website"
   android:layout_height="30px"
   android:layout_width="150px"
   android:scrollbars="none"
   android:transcriptMode="normal"/>

两个listview之间有一行空行。我怎么移除它?


当前回答

ListFragment的使用

getListView().setDivider(null)

获取列表后。

其他回答

如果这个android:divider="@null"不工作,也许改变你的ListViews为回收者视图?

如果你想删除分隔线,使用下面的代码: android:分频器= " @null " 如果你想添加一个空格而不是分隔线: android:分频器= " @android:颜色/透明” android: dividerHeight = " 5 dp "

因此,您可以在分隔符属性中使用任何可绘制的或颜色。

如果你想从

⛔问题

Having lines between items from <ListView>

✅解决方案

add an attribute android:drivider="@null"

ListFragment的使用

getListView().setDivider(null)

获取列表后。

设置分隔符为空:

JAVA

  listview_id.setDivider(null);

XML

<ListView 
  android:id="@+id/listview"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:divider="@null"
  />