I was following the progress dialog example in the ApiDemos. all went great except for one thing - I want to remove the numbers that appear underneath the bar (those running numbers that run from 0 to .getMax().

couldn't find how to do it.

anyone?

Ori

link|improve this question

37% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Just looked through ProgressDialog.java, there's no official way.

The choices are:

  • Subclass it, access mProgressNumber via reflection to .setVisibility(View.GONE);

  • Write your own implementation.

link|improve this answer
Thanks. I did it and it helped. – oriharel May 10 '10 at 9:02
feedback

With api 11, we can do it by calling:

processDialog.setProgressNumberFormat(null);
processDialog.setProgressPercentFormat(null);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.