我试图从线程中显示吐司。
Toast.makeText(activity.getApplicationContext(), "This is the Toast message", Toast.LENGTH_LONG).show();
但抛出异常
java.lang.RuntimeException:Can't create a handler inside thread that has not called Looper.prepare().
我该如何解决这个问题?Looper.myLooper().prepare();
我已经把Toast.makeText(....).show();
完成此操作后,它不会引发异常,但不会显示任何 toast 消息。
那么我该如何解决这个问题呢?
提前致谢。