首页 > 代码库 > The content of the adapter has changed but ListView did not receive a notification
The content of the adapter has changed but ListView did not receive a notification
在非Ui线程中修改ListView绑定的数据对象的问题
问题描述:
在非UI线程中修改了ListView绑定的数据对象(如List)时,如下异常:
问题分析:
在非UI线程下不能够对主线程中ListView绑定的List数据进行修改。
解决方法:
方法一:将对List中数据的修改放到主线程中。
方法二:将子线程中要更新的数据通过Handler传递到主线程中,然后在主线程中将传递过来的数据添加到ListView绑定的数据对象List中,然后同时adapter数据改变。
在这里主要介绍第二种方式:
具体步骤:
1.在子线程中将要更新的数据以Message的方式传递给主线程。
Map<String, Object>item=new HashMap<String, Object>(); //获取程序的包名 String packageName=appInfo.packageName; item.put("imgIco", ico); item.put("appName", appName); item.put("packageName", packageName); Message message = new Message(); message.what =SCANNING; message.obj = item; mHandler.sendMessage(message);
2.在主线程中通过Handler处理子线程发来的消息,更新ListView的数据对象。
Handler mHandler=new Handler(){ @Override public void handleMessage(Message msg) { // TODO Auto-generated method stub switch (msg.what) { case FLAG_LOAD_SUCCESS://完成扫描 break; case SCANNING://正在扫描 items.add((Map<String, Object>) msg.obj); //通知适配器数据改变 adapter.notifyDataSetChanged();
The content of the adapter has changed but ListView did not receive a notification
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。