Android's ProgressDialog allows you to set the current progress and maximum value as integers. These values are shown in the dialog like this:
3401/10023
Where the first number is the current progress, and the second number is the maximum value.
I would like to also show the unit of measurement. Something like this:
3401/10023 KB
Is this possible using ProgressDialog? If not, what do you recommend doing to give this information to the user? I'm trying to avoid reimplementing ProgressDialog just to include the unit.