向 ListView 添加页脚时遇到问题
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
显然,如果我在设置适配器之前添加页脚,它就可以工作
Apparently if I add the footer before setting the Adapter, it works