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?