如何刷新android中的活动页面? 该页面包含Listview和Gridview,我只想刷新Listeview。
谢谢
答案 0 :(得分:1)
这种操作没有具体的方法,但是你可以通过编码,在Hanlder&amp ;;的帮助下实现这一点。 Runnable类。
看看这段代码,
Handler handler = new Handler();
Runnable activityRefresh;
activityRefresh = new Runable() {
// Do something
handler.postDelayed(activityRefresh, 5000);
}
handler.post(activityRefresh);
答案 1 :(得分:0)
您应该将所有加载的代码移动并将ListView上的日期设置为其他方法,当您只想刷新ListView时,可以再次调用您的方法。
如果您的ListView适配器没有更改,那么您可以根据需要简单地修改适配器中的数据,然后调用listView.notifyDataSetChanged()
直观地更新它。
答案 2 :(得分:0)
在适配器上调用invalidateViews()或调用notifyDataSetChanged()。
答案 3 :(得分:0)
刷新列表视图Call notifyDataSetChanged() on your Adapter.
你也可以看看这个。这可能有用link