首页 > 代码库 > 解决使用Handler时Can't create handler inside thread that has not called Looper.prepare()

解决使用Handler时Can't create handler inside thread that has not called Looper.prepare()

    在android开发中,主线程不能进行耗时操作,所以我们经常把耗时操作放在子线程中进行,那么就需要子线程与主线程相互交流,就需要使用到handler.

    而在使用handler过程中,如果对handler使用不太熟练的话就偶尔会出现Can‘t create handler inside thread that has not called Looper.prepare()的报错异常。之前在Handler的原理的博文中有讲到,Handler的使用会依靠Looper循环来发送消息,如果不创建Looper对象,消息就无法发送,系统就会崩溃。那么为什么使用handler有时候可以运行,有时候不能运行呢?

    其实就是如果在主线程中创建handler时,系统会自动创建Looper,但是在子线程中创建handler时,是不会自动创建Looper的,此时如果不手动创建Looper,系统就会崩溃

    举例如下:首先在子线程创建Handler(即主线程发送消息给子线程处理)

    技术分享

技术分享

系统就会报出Can‘t create handler inside thread that has not called Looper.prepare()的报错异常。

解决方法是:

技术分享

通过Looper.prepare();创建Looper对象

    下面在主线程中创建Handler

技术分享

在主线程创建Handler(即子线程发送消息给主线程处理),系统就会自动创建Looper,而不需要手动创建Looper.

本文出自 “11828641” 博客,请务必保留此出处http://11838641.blog.51cto.com/11828641/1842810

解决使用Handler时Can't create handler inside thread that has not called Looper.prepare()