码迷,mamicode.com
首页 > 移动开发 > 详细

Android开发之在子线程中使用Toast

时间:2015-07-10 15:11:35      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:

在子线程中使用Toast的时候,出现Force close。

错误提示:Can‘t create handler inside thread that has not called Looper.prepare()

解决方法:

1 Looper.prepare();
2 Toast.makeText(ActivityTestActivity.this, "toast", 1).show();
3 Looper.loop();

原因:

子线程只是一个普通的线程,其ThreadLoacl中没有设置过Looper,所以会抛出异常

Android开发之在子线程中使用Toast

标签:

原文地址:http://www.cnblogs.com/liyiran/p/4635676.html

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