I am showing a horizontal style, indeterminate ProgressDialog as follows:
progressDialog.setMessage("My progress dialog message");
progressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
progressDialog.setIndeterminate(true);
progressDialog.show();
The indeterminate horizontal progress graphic/animation shows okay. However, give that it’s an indeterminate progress dialog, I would expect the “0%” and “0/100” labels on the bottom left and bottom right respectively to be hidden. Anyone know how to hide these?
Following Andro Selva’s comment, the best I’ve been able to come up with is to use…
… when it’s determinate and to use…
… when it’s indeterminate. Not ideal but it works. (The spinner style doesn’t show the progress values.)