Adapter报错:The content of the adapter has changed

参考:http://blog.csdn.net/l_serein/article/details/6384914


不要在后台进程中调用adapter,清空adapter的数据之后,要通知adapter:

adapter.getList().clear();
adapter.notifyDataSetChanged();


你可能感兴趣的:(Adapter报错:The content of the adapter has changed)