如何在ListView的页脚后删除ListView分隔符?
使用 android:footerDividersEnabled =“false”会在我的ListView的最后一项之后删除分隔符,但不会在我的ListView的页脚之后删除…
使用 android:footerDividersEnabled =“false”会在我的ListView的最后一项之后删除分隔符,但不会在我的ListView的页脚之后删除…
谢谢
解决方法
这对我有用,使得ListView的android:layout_height =“wrap_content”.
这是我的ListView xml
<ListView android:id="@id/android:list" android:layout_width="fill_parent" android:layout_height="wrap_content" android:cacheColorHint="@color/transparent" android:divider="@color/list_divider" android:dividerHeight="1dp" android:fadeScrollbars="true" android:focusable="true" android:footerDividersEnabled="true" android:scrollbars="none" android:transcriptMode="alwaysScroll" />