在 Android 中创建一个内部线程处理程序

发布于 2024-10-27 10:14:20 字数 481 浏览 1 评论 0原文

我试图从线程中显示吐司。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

残月升风 2024-11-03 10:14:20

您可以在异步任务的 onPostExecute 中创建 Toast 消息.. 试试这个..

protected void onPostExecute(Void result) {
  Toast.makeText(ActivityName.this,"Your Text", Toast.LENGTH_SHORT).show(); 
  if (this.dialog.isShowing()) {
    this.dialog.dismiss();
  }
}

You can create your Toast message in onPostExecute of Async Task.. Try this..

protected void onPostExecute(Void result) {
  Toast.makeText(ActivityName.this,"Your Text", Toast.LENGTH_SHORT).show(); 
  if (this.dialog.isShowing()) {
    this.dialog.dismiss();
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文