我在listview中添加了一个可绘制的分隔符,但除最后一项之外的所有项目都会显示。
我在列表中只有5个项目,所以在最后一个项目之后它的所有空格,我想在最后一个项目之后有一个分隔符
我试过这个:
android:footerDividersEnabled="true"
谢谢
答案 0 :(得分:11)
在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" />
答案 1 :(得分:8)
水平线
<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" />