我在我的列表视图中添加了一个可绘制的分隔线,但它出现在除最后一项之后的所有项目中。
我的列表中只有 5 项,所以在最后一项之后都是空白,即使在最后一项之后我也想有一个分隔符
我试过这个:
android:footerDividersEnabled="true"
在我的列表视图中。但它没有工作
谢谢你
我在我的列表视图中添加了一个可绘制的分隔线,但它出现在除最后一项之后的所有项目中。
我的列表中只有 5 项,所以在最后一项之后都是空白,即使在最后一项之后我也想有一个分隔符
我试过这个:
android:footerDividersEnabled="true"
在我的列表视图中。但它没有工作
谢谢你
尝试在 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" />
水平线
<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" />