Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Possible to hide progress text from horizontal style, indeterminate ProgressDialog?

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?

like image 244
Adil Hussain Avatar asked Nov 29 '25 02:11

Adil Hussain


1 Answers

It is possible to hide those by calling two ProgressDialog's methods

progressDialog.setProgressNumberFormat(null);
progressDialog.setProgressPercentFormat(null);

See ProgressDialog documentation for reference.

like image 115
Pete Avatar answered Nov 30 '25 16:11

Pete