更改 Android 进度对话框背景颜色

发布于 2024-12-28 01:53:24 字数 96 浏览 1 评论 0原文

在此处输入图像描述

有什么方法可以更改进度对话框背景的黑色吗?

enter image description here

is there any way to change the black color of Progress Dialog background?

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

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

发布评论

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

评论(4

⒈起吃苦の倖褔 2025-01-04 01:53:24

您可以像这样更改 ProgressDialog 的主题:

ProgressDialog dialog = new ProgressDialog(this, AlertDialog.THEME_HOLO_DARK);
dialog.setTitle("Title");
dialog.setMessage("Message");
dialog.show();

You can change the theme of the ProgressDialog like this:

ProgressDialog dialog = new ProgressDialog(this, AlertDialog.THEME_HOLO_DARK);
dialog.setTitle("Title");
dialog.setMessage("Message");
dialog.show();
黑寡妇 2025-01-04 01:53:24

对于白色背景的加载对话框

ProgressDialog progressDialog = new ProgressDialog(this, AlertDialog.THEME_HOLO_LIGHT);
progressDialog.setMessage("Loading");
progressDialog.show();

For a loading dialog with white background

ProgressDialog progressDialog = new ProgressDialog(this, AlertDialog.THEME_HOLO_LIGHT);
progressDialog.setMessage("Loading");
progressDialog.show();
两人的回忆 2025-01-04 01:53:24

试试这个

 textview.setTextColor(Color.RED); 
//textview must be defined in your class 

root.setBackgroundColor(Color.WHITE);

try this

 textview.setTextColor(Color.RED); 
//textview must be defined in your class 

or

root.setBackgroundColor(Color.WHITE);
狼亦尘 2025-01-04 01:53:24

Dialog.setBackgroundColor(颜色名称或十六进制值);

Dialog.setBackgroundColor(name of color or hex value);

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