Android ProgressDialog 线程

发布于 2024-10-08 07:06:21 字数 344 浏览 3 评论 0原文

如何在单独的 UI 线程中显示 ProgressDialog?

我有以下代码:

public boolean myMethod() {

  // show here ProgressDialog in thread

  // long operation, MUST BE NOT in thread, as there's a return value...

  return value;
}

使用处理程序,线程,AsyncTask 没有帮助...

有没有办法在单独的线程中运行 ProgressDialog 并在主线程中运行主(长)操作?

谢谢,

How to show ProgressDialog in separate UI thread?

I have the following code:

public boolean myMethod() {

  // show here ProgressDialog in thread

  // long operation, MUST BE NOT in thread, as there's a return value...

  return value;
}

Using Handler, Thread, AsyncTask didn't help...

Is there any way to run ProgressDialog in separate thread and main (long) operation in main thread?

Thanks,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

随梦而飞# 2024-10-15 07:06:21

只有一个 UI 线程。切勿在其中运行任何重物。恐怕你必须在后台运行它并在 UI 线程中运行进度条。

您可能需要进行一些重新设计才能实现这一目标。您可以使用回调来消除返回值。

There is only one UI thread. You should never run anything heavy in it. I'm afraid you have to run that in the background and the progress bar in the UI thread.

You might have to do a bit redesigning to achieve that. You can use callbacks to get rid of the return values.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文