我使用了两个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之间有一行空行。我怎么移除它?


当前回答

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

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

其他回答

你可以试试下面的方法。这对我很管用……

android:divider="@android:color/transparent"
android:dividerHeight="0dp" 

我发现在XML文件中实现它更容易,因为在具有数百行代码的类中跟踪代码行可能更困难。 对于XML,你可以使用“null”:

android:divider="@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"
  />

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

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

或者在XML中:

android:divider="@drawable/list_item_divider"
android:dividerHeight="1dp"

你可以为可绘制对象使用一种颜色(例如#ff112233),但要注意,在纸杯蛋糕之前发布的版本中有一个无法设置颜色的错误。相反,必须使用9-patch或映像。