Android ListView FooterView 宽度不匹配父级
我有一个用于显示消息的列表视图,我想添加页脚视图以显示 loadmore 按钮,如果列表视图设置 android:layout_height="fill_parent"
它可以正常工作,但我需要给它一个绝对值设置listview高度,如android:layout_height="400dip"
,以避免getview方法重复调用,导致footerview宽度无法匹配parent。
I have a listview for display message, and I wanna add footerview to show loadmore button, if the listview set android:layout_height="fill_parent"
it works normally, but I need to give it an absolute value to set listview height such as android:layout_height="400dip"
so as to avoid getview method repeat calling , and then the footerview width can’t match parent.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置列表视图
layout_height="fill_parent"
和layout_weight="1"
,那么你放在它下面的任何东西都会有空间。Set the list view
layout_height="fill_parent"
andlayout_weight="1"
, then anything that you put under it will have space.