
is there any way to change the black color of Progress Dialog background?
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();
For a loading dialog with white background
ProgressDialog progressDialog = new ProgressDialog(this, AlertDialog.THEME_HOLO_LIGHT);
progressDialog.setMessage("Loading");
progressDialog.show();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With