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
Just looked through
ProgressDialog.java, there’s no official way.The choices are:
Subclass it, access
mProgressNumbervia reflection to.setVisibility(View.GONE);Write your own implementation.