Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在刷新列表视图后删除我在列表视图中添加的页脚。我也可能需要在以后的执行中添加。
我认为这样做没有任何问题,您只需像您一样正常添加页脚,然后调用
mListView.removeFooterView(footer_view);
当您需要删除页脚时。只要确保当您必须再次重新添加页脚时,您添加它,然后再次添加setAdapter您的 ListView。
setAdapter
因为众所周知,
注意:在调用 setAdapter 之前调用它。这样 ListView 就可以将提供的光标与一个也将考虑页眉和页脚视图的光标包装起来。