码迷,mamicode.com
首页 > 编程语言 > 详细

java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()

时间:2015-06-30 17:56:13      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

1. 程序时,出现运行时异常,如上图所示。

2.异常原因分析。在ContentObserver的onChange方法中,调用了Toast.makeText方法。onChange方法应该在子线程运行,在android中的子线程中不能直接控制UI组件,否则就会报异常

3.Looper类别用来为一个线程开启一个消息循环。默认情况下Android中新诞生的线程是没有开启消息循环的。(主线程除外,主线程系统会自动为其创建Looper对象,开启消息循环)

java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()

标签:

原文地址:http://www.cnblogs.com/ouysq/p/4610981.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!