在列表中的最后一个项目之后显示分频器(Show divider after the last ite

2019-09-20 18:16发布

我添加了一个分压器可绘制到我的列表视图,但它似乎对所有的项目,除了最后一个项目之后。

我只有在名单上的5个项目,所以它的最后一个项目之后的所有空白,我想即使是最后一个项目之后有一个分隔

我想这:

android:footerDividersEnabled="true"

在我的列表视图。 但它没有工作

谢谢

Answer 1:

尝试下面的XML

<View
    android:background="#00ff00"
    android:layout_width="fill_parent"
    android:layout_height="3dp"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_below="@+id/YOUR_LIST_ID" />


Answer 2:

水平线

<View
android:id="@+id/view"
android:background="#FF4500"
android:layout_width="fill_parent"
android:layout_height="2dp"     
android:layout_below="@+id/listview_id" />

垂线

 <View
android:id="@+id/view"
android:background="#FF4500"
android:layout_width="2dp"
android:layout_height="fill_parent"     />


文章来源: Show divider after the last item in the list