Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change Android Progress Dialog background color

enter image description here

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

like image 943
cool dev Avatar asked Jul 08 '26 00:07

cool dev


2 Answers

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();
like image 134
Groppe Avatar answered Jul 10 '26 14:07

Groppe


For a loading dialog with white background

ProgressDialog progressDialog = new ProgressDialog(this, AlertDialog.THEME_HOLO_LIGHT);
progressDialog.setMessage("Loading");
progressDialog.show();
like image 23
karma Avatar answered Jul 10 '26 13:07

karma



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!