向 ListView 添加页脚时遇到问题

发布于 2024-09-13 06:01:28 字数 373 浏览 4 评论 0原文

我有一个 ListView,我正在尝试向其添加页脚。由于某种原因,它不会显示。我的页脚是在名为layout_footer 的单独XML 布局中定义的。

View v = getLayoutInflater().inflate(R.layout.layout_footer, getListView(), false);
getListView().addFooterView(v);

这是我的 ListActivity 的 onCreate 方法中的代码。请注意,这是我在 onCreate 中做的最后一件事。

我希望该项目与列表的其余部分一起滚动,根据我找到的资源,我相信这就是您的做法。不幸的是,页脚不显示:(

非常感谢您的帮助

I have a ListView that I'm trying to add a footer to. For some reason, it won't show up. My footer is defined in a separate XML layout called layout_footer.

View v = getLayoutInflater().inflate(R.layout.layout_footer, getListView(), false);
getListView().addFooterView(v);

Here is the code in my ListActivity's onCreate method. Please note that it is the last thing I do in onCreate.

I want this item to scroll with the rest of the list and, according to the resources I've found, I believe this is how you do it. Unfortunately, the footer does not show :(

Help would be much appreciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情未る 2024-09-20 06:01:28

显然,如果我在设置适配器之前添加页脚,它就可以工作

Apparently if I add the footer before setting the Adapter, it works

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文