自定义进度对话框

发布于 2024-12-01 03:46:06 字数 201 浏览 1 评论 0原文

例如,我如何在 AsyncTask 期间执行自定义“加载”对话框(例如美国银行应用程序中的对话框)?请参阅:

在此处输入图像描述

我基本上不想要弹出 ProgressDialog 而是一个嵌入到布局中。

How would I do a custom "loading" dialog during an AsyncTask like the one in the Bank of America app, for instance? See:

enter image description here

I basically don't want the popup ProgressDialog but instead one that is embedded into the layout.

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

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

发布评论

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

评论(2

凉墨 2024-12-08 03:46:06

它不是 ProgressDialog。它只是一个ProgressBar。将其放在布局上并在必要时使其可见。

It's not a ProgressDialog. It's just a ProgressBar. Put it on your layout and make it visible when it's necessary.

夏有森光若流苏 2024-12-08 03:46:06

这是一个可以添加到任何布局的 ProgressBar 视图:

<ProgressBar
  android:indeterminate="true"
  android:layout_height="wrap_content"
  android:layout_width="wrap_content"
/>

That's a ProgressBar view that can be added to any layout:

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