在 Android 中创建一个内部线程处理程序
我试图从线程中显示吐司。
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 消息。
那么我该如何解决这个问题呢?
提前致谢。
I tried to show the toast from the thread.
Toast.makeText(activity.getApplicationContext(), "This is the Toast message", Toast.LENGTH_LONG).show();
but throws the exception
java.lang.RuntimeException:Can't create a handler inside thread that has not called Looper.prepare().
How do I solve this problem? I have put the Looper.myLooper().prepare();
before the Toast.makeText(....).show();
When I have done this it doesn't throw the exception but does not show any toast message.
So how do I solve this problem?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在异步任务的 onPostExecute 中创建 Toast 消息.. 试试这个..
You can create your Toast message in onPostExecute of Async Task.. Try this..