android砖家 2014-02-06 11:10 采纳率: 0%
浏览 7134

一点击ListView就闪退

一点击ListVIew就闪退,调试了两天了,好痛苦,望大家解救。

这是部分日志

*02-06 10:58:39.207: E/InputEventReceiver(764): Exception dispatching input event.
02-06 10:58:39.207: E/MessageQueue-JNI(764): Exception in MessageQueue callback: handleReceiveCallback
02-06 10:58:39.377: E/MessageQueue-JNI(764): java.lang.IllegalStateException: 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. [in ListView(16908298, class android.widget.ListView) with Adapter(class android.widget.SimpleAdapter)]
02-06 10:58:39.377: E/MessageQueue-JNI(764): at android.widget.ListView.layoutChildren(ListView.java:1538)

部分代码:

  • protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_clear);
    bar = (ProgressBar) findViewById(R.id.progressBar0);
    list = new ArrayList>();
    SimpleAdapter adapter = new SimpleAdapter(this, list,
    R.layout.list_view, new String[] { "name", "size", "path"},
    new int[] { R.id.name, R.id.size, R.id.path });
    setListAdapter(adapter);
    System.out.println("hh");

    handler = new MyHandler();
    
    thread = new MyThread();
    thread.start();
    

    }

private void SendMessage(String name, String path, String size) {
Message message = handler.obtainMessage();
HashMap hashMap = new HashMap();
hashMap.put("name", name);
hashMap.put("path", path);
hashMap.put("size", size);
message.obj = hashMap;
handler.sendMessage(message);

}

class MyHandler extends Handler {

    @Override
    public void handleMessage(Message msg) {
        HashMap<String, String> hashMap = (HashMap<String, String>) msg.obj;
        list.add(hashMap);


    }

}
  • 写回答

2条回答

  • franzhong 2014-02-09 08:21
    关注

    模式错了,不能在线程内更改UI部分
    已经提示了:
    Make sure the content of your adapter is not modified from a background thread, but only from the UI thread.
    解决方法:
    把线程内更新ui部分的内容提出来放到主线程里
    然后在子线程内仅调用它即可
    可把需要的参数传过来的

    评论

报告相同问题?

悬赏问题

  • ¥15 mmocr的训练错误,结果全为0
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀