这个问题正常和老版本有关,老版本老出现这问题
如果你是老版本就这样写下就好了
new Thread(){public void run() {
Looper.prepare();
beginConnect();//从服务端获取消息
Looper.loop();
};}.start();
如果不是2.几的版本,那就是下面的问题了。
在Android中不允许Activity里新启动的线程访问该Activity里的UI组件,这样会导致新启动的线程无法改变UI组件的属性值。
出现java.lang.RuntimeException: Can‘t create handler inside thread that has not called Looper.prepare()异常
然而,我们实际需要,在很多时候都需要异步获取数据刷新UI控件,这时候采取的方法就是Handler消息机制和AsyncTask异步任务两种解决方法。
首先是引起异常的例子:
上面例子在线程里面休眠1秒后吐司消息,然后出现java.lang.RuntimeException: Can‘t create handler inside thread that has not called Looper.prepare()异常。
正确的方法应该是:
重写Handler对象中的handlerMessage方法进行你需要的处理。
当然不是只有这一种方法可以实现我们的需要,
runOnUiThread(Runnable action) Activity中带有的方法,运行指定的action在UI线程中,如果当前线程是UI线程,那么action立即执行。如果当前线程不是UI线程,那么action将发送事件到UI的消息队列中。
View post(Runnable aciton);
View postDelayed(Runnable action, long delayMillis);
这两个方法也是同样的道理。
下面是异步任务的处理:
onProgressUpdate方法的执行在收到publishProgress方法调用后,运行于UI线程中,对UI控件进行处理,例如,我们做的下载,需要显示下载到了百分之多少时,可以不停的publishProgress(Value value),然后在进度条中更新。
onPostExecute()方法,在doInBackground()方法结束后运行在UI线程,对result进行处理
doInBackground()方法中,就是在后台线程中处理我们的异步任务,不能做类似Toast的操作,同样会出java.lang.RuntimeException: Can‘t create handler inside thread that has not called Looper.prepare()异常。
java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
原文地址:http://blog.csdn.net/chenaini119/article/details/43792931