从ListView中删除所有添加的视图

时间:2015-07-29 13:47:57

标签: java android android-listview

我使用以下代码向ListView添加视图:

((ViewGroup) myListView.getParent()).addView(createMyCustomView());

我的问题是如何清除所有添加的视图?我试过了removeAllViews(),但它没有用。

我需要将视图添加到ListView中,以便我可以使用以下命令设置其空视图:

myListView.setEmptyView(createMyCustomView());

1 个答案:

答案 0 :(得分:0)

清除适配器中使用的列表中的项目,然后在适配器上调用notifyDataSetChanged()。结帐similar question

如果这有帮助,或者您需要更多信息,请告诉我们!