tags:

views:

56

answers:

1

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

+1  A: 

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.

alex
Thanks. I did it and it helped.
oriharel