当前位置: 代码迷 >> 综合 >> 解决java.lang.RuntimeException: Can‘t toast on a thread that has not called Looper.prepare()
  详细解决方案

解决java.lang.RuntimeException: Can‘t toast on a thread that has not called Looper.prepare()

热度:89   发布时间:2024-01-06 07:01:28.0

 

Looper用于封装了android线程中的消息循环,默认情况下一个线程是不存在消息循环(message loop)的,需要调用Looper.prepare()来给线程创建一个消息循环,调用Looper.loop()来使消息循环起作用,使用Looper.prepare()和Looper.loop()创建了消息队列就可以让消息处理在该线程中完成。(摘自网上大神的解释)

        所以咱需要在子线程中手动创建一个Looper,也就是解决方案:

Looper.prepare();
mToast.show();
Looper.loop();

  相关解决方案