解决java.lang.IllegalStateException:The content of the adapter has changed but ListView did not receive a notification...的问题

在使用ListView过程中,有时会出现The content of the adapter has changed but ListView did not receive a notification. Make sure the content of your adapter is not modified from a background thread, but only from the UI thread. Make sure your adapter calls notifyDataSetChanged() when its content changes.

原因是给ListView设置的adapter,修改数据源时放在了非UI线程中去执行,在主线程中调用adapter的notifyDataSetChanged()方法,有时会抛出此异常,(亦即,当ListView缓存的数据Count和ListView中Adapter.getCount()不等时,会抛出该异常。)因此,修改adapter数据源时需要放在主线程中去执行,这里给出两种思路。

1.修改数据时可以为adapter的数据源复制一个副本,在子线程中修改副本的数据即可,然后在主线程中将副本赋值给adapter数据源即可。

2.直接在主线程中修改adapter的数据源。通过Activity.runOnUiThread()方法,Handler机制和AsyncTask均可实现。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容