Handler 与 Toast

时间:2014-05-01 02:04:03   收藏:0   阅读:267

Toast或者Dialog中都有一个Handler的成员变量,所以如果不是在主线程中使用Toast或Dialog,则需要在使用Toast或者Dialog的线程中初始化Looper。

Looper.prepare();
Toast.makeText(MainActivity.this, "网络出错了", Toast.LENGTH_SHORT).show();
Looper.loop();

否则出现异常:java.lang.RuntimeException: Can‘t create handler inside thread that has not called Looper.prepare()

 

Handler 与 Toast,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!