我是靠谱客的博主 含蓄手套,最近开发中收集的这篇文章主要介绍解决在子线程中显示Toast时出现Can‘t toast on a thread that has not called Looper.prepare异常的问题,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
如果在子线程中直接显示Toast:
Toast.makeText(context, "测试", Toast.LENGTH_SHORT).show();
运行时就会出现如下异常:
java.lang.RuntimeException: Can't toast on a thread that has not called Looper.prepare()
原因是Android中不允许在子线程中处理UI。如果要在子线程中处理UI那就要动态转到主线程中执行,所以常用的3个解决方法如下:
1.使用Looper。
Looper.prepare();
Toast.makeText(context, "测试", Toast.LENGTH_SHORT).show();
Looper.loop();
2.如果代码是在Activity中,可以使用runOnUiThread。
runOnUiThread(new Runnable() {
@Override
public void run() {
Toast.makeText(context, "测试", Toast.LENGTH_SHORT).show();
}
});
3.使用rxjava。
Observable.just(1L)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(a -> {
Toast.makeText(context, "测试", Toast.LENGTH_SHORT).show();
}, throwable -> {
throwable.printStackTrace();
});
最后
以上就是含蓄手套为你收集整理的解决在子线程中显示Toast时出现Can‘t toast on a thread that has not called Looper.prepare异常的问题的全部内容,希望文章能够帮你解决解决在子线程中显示Toast时出现Can‘t toast on a thread that has not called Looper.prepare异常的问题所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复