android – 在ListView中的页脚后删除分隔符

前端之家收集整理的这篇文章主要介绍了android – 在ListView中的页脚后删除分隔符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在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" 
        />
原文链接:https://www.f2er.com/android/308906.html

猜你在找的Android相关文章