Android 定位进度对话框或自定义进度对话框

发布于 2024-08-22 19:35:40 字数 88 浏览 7 评论 0原文

我不知道如何定位进度对话框(带有旋转图像的对话框)。当我的应用程序启动时,它会显示全屏图像和进度对话框。我需要将进度对话框移低一点。

谢谢 拉杰什

I don't know how to position the progress dialog(the one with the rotating image). When my application starts its display an full screen image and a progress dialog box. I need to moved the progress dialog box a little lower.

Thanks
Rajesh

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

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

发布评论

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

评论(2

依 靠 2024-08-29 19:35:40

我已经尝试过这个并且有效:

ProgressDialog dialog = new ProgressDialog(this);
dialog.getWindow().setGravity(Gravity.BOTTOM);

I've tried this one and works:

ProgressDialog dialog = new ProgressDialog(this);
dialog.getWindow().setGravity(Gravity.BOTTOM);
话少情深 2024-08-29 19:35:40

我做了类似的事情,我发现构建一个扩展 Dialog 的类来显示图像和进度微调器更容易。

I do a similar thing and I found that it was just easier to build a class that extends Dialog that shows the image and the Progress spinner.

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