如何添加第二个进度条 Android ProgressDialog

发布于 2024-11-24 16:50:10 字数 134 浏览 1 评论 0原文

朋友们;

如何设置 ProgressDialog 第二个进度条,如下图所示。

在此处输入图像描述

谢谢。

Friends;

How To Set ProgressDialog Second Progress Bar Like Below Images.

enter image description here

thanx.

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

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

发布评论

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

评论(2

む无字情书 2024-12-01 16:50:10

您显示的屏幕截图不是 ProgressDialog,它只是一个具有自定义布局的对话框。
为了显示如图所示的对话框,您需要的是:

  1. 定义两个 ProgressBar 的自定义布局,一个在另一个下面。

  2. 创建一个对话框并调用 yourDialog.setContentView(R.id.yourCustomLayout)

  3. 就是这样,这就是您所需要的一切

我想提请您注意这样一个事实,您还可以使用以下命令在与第一个进度条相同的 ProgressBar 中显示第二个进度yourProgressBar.setSecondaryProgress(progressValue)。

The screenshot you show is not a ProgressDialog, it is just a Dialog with a custom layout.
What you need, in order to show a dialog like the one in your picture is:

  1. A custom layout defining two ProgressBars, one below the other.

  2. Create a Dialog and call yourDialog.setContentView(R.id.yourCustomLayout)

  3. That's it, that's all you need

I would like to call your attention to the fact that you can also show the second progress in the same ProgressBar as the first, by using yourProgressBar.setSecondaryProgress(progressValue).

秉烛思 2024-12-01 16:50:10

我是否正确地假设这是一个布局问题?您想让第二个进度低于当前所在的框吗?

如果是这种情况,请使用相对布局,并在布局 xml 中将此行添加到进度栏:

android:layout_below="...."

在引号中输入它们当前所在的框的 id。

Am I right in assuming that this is a layout issue? You want to have that second progress below the box that it is currently in?

If that's the case, use a relative layout and in the layout xml add this line to the progess bar:

android:layout_below="...."

In the quotation marks enter the id of the box that they are currently in.

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