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

一点击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部分的内容提出来放到主线程里
    然后在子线程内仅调用它即可
    可把需要的参数传过来的

    评论

报告相同问题?

悬赏问题

  • ¥20 delta降尺度方法,未来数据怎么降尺度
  • ¥15 c# 使用NPOI快速将datatable数据导入excel中指定sheet,要求快速高效
  • ¥15 再不同版本的系统上,TCP传输速度不一致
  • ¥15 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程