1
How do I change the default color of Progressdialog (Spinner) on android? Below is the code I’m using:
ProgressDialog progress = new ProgressDialog(this);
progress.setTitle("Título);
progress.setMessage("Mensagem");
progress.setProgressStyle(ProgressDialog.STYLE_SPINNER);
progress.show();
Is that the setProgressTintList would be for the use of Progressbar, I am using the Progressdialog...
– Denner Evaldt Machado
This might help: http://stackoverflow.com/questions/13910028/using-custom-progressdialog-android
– Lucas Moretto