码迷,mamicode.com
首页 > 编程语言 > 详细

java.lang.IllegalStateException: The content of the adapter has changed but ListView did not receive a notification

时间:2015-08-16 12:04:07      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

ListView UI重绘时触发layoutChildren, 此时会校验listView的mItemCount与其Adapter.getCount是否相同,不同报错。

ListView.layoutChildren:

技术分享

mItemCount是在父类AdapterView中定义的,package类型

 技术分享

在两个地方mItemCount会被赋值,初始设置Adapter时:
技术分享
xxAdapter.notifyDataSetChanged时:
技术分享
因此一定要确保修改adapter数据和notifyDataSetChanged是coupled出现的,否则在特定时序下很容易出现上述异常。

java.lang.IllegalStateException: The content of the adapter has changed but ListView did not receive a notification

标签:

原文地址:http://www.cnblogs.com/tonybright/p/4733734.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!