How to Override progress bar progress message i.e.

2019-04-16 08:04发布

Possible Duplicate:
Progress unit in ProgressDialog

enter image description here

How to Override progress bar progress message i.e.. 61/100 to a custom message as 10 remaining out of 100

1条回答
放荡不羁爱自由
2楼-- · 2019-04-16 08:23

ProgressDialog has method setProgressNumberFormat(). It's exactly what you need.

In your case:

progressDialog.setProgressNumberFormat("%1d remaining out of %2d");

Of course, it's better to define the string in resources.

Upd: This method available only in Android 3.0. As alternative you can implement your own ProgressDialog or just copy implementation from Android sources as mentioned in Progress unit in ProgressDialog.

查看更多
登录 后发表回答