问题: Can't create handler inside thread that has not called Looper.prepare()
1,在报错的方法前加Looper.prepare();
方法末尾加Looper.loop();
2,问题原因:
在android的多线程开发中,比如asyncTask,在其doInBackground()方法,调用了更新UI的方法。
解决办法:
把更新UI的操作,放到消息处理器中处理;在doInBackground()方法中发送更新消息:
Handler updateDate = new Handler(){
@Override
public void handleMessage(Message msg) {
switch(msg.what){
case LOADING_FINISHED:
listView.setAdapter(gameAdapter);
break;
}
}
};
3,
Toast和Looper。Handler消息循环机制。
(1) Looper类别用来为一个线程开启一个消息循环。默认情况下Android中新诞生的线程是没有开启消息循环的。(主线程除外,主线程系统会自动为其创建Looper对象,开启消息循环)
Looper对象通过MessageQueue来存放消息和事件。一个线程只能有一个Looper,对应一个MessageQueue。
(2) 通常是通过Handler对象来与Looper交互的。Handler可看做是Looper的一个接口,用来向指定的Looper发送消息及定义处理方法。
默认情况下Handler会与其被定义时所在线程的Looper绑定,比如,在主线程中定义,其是与主线程的Looper绑定。
mainHandler = new Handler() 等价于new Handler(Looper.myLooper()).
Looper.myLooper():Return the Looper object associated with the current thread 获取当前进程的looper对象。
还有一个类似的 Looper.getMainLooper() 用于获取主线程的Looper对象。
(3) 在非主线程中直接new Handler() 会