Code Bye

Listview适配器调用notifyDataSetChanged不刷新ListView

数据源添加了数据,适配器调用notifyDataSetChanged没有刷新,求高手帮忙解决
解决方案

100

试试
listView.post(new Runnable() {

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

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明Listview适配器调用notifyDataSetChanged不刷新ListView