今天热门
热点:

Listview适配器调用notifyDataSetChanged不刷新ListView,listview刷新适配器


数据源添加了数据,适配器调用notifyDataSetChanged没有刷新,求大神帮忙解决

解决方案

试试
listView.post(new Runnable() {

@Override
public void run() {
adapter.notifyDataSetChanged();
}
});

www.zrccd.nettrue/topics/20181009/188559.htmlTechArticleListview适配器调用notifyDataSetChanged不刷新ListView,listview刷新适配器 数据源添加了数据,适配器调用notifyDataSetChanged没有刷新,求大神帮忙解决 解决方案 试试 listView.post(newRunnable(){ @Over...

相关文章

    暂无相关文章

用户评论

大家都在看