How to remove the text in progressBar in Android?

前端 未结 3 2037
忘了有多久
忘了有多久 2021-01-21 03:52

I have a progress bar in my app but it is showing some text default i want to remove the text. please help me how to remove the text.

Here is my code snippet:

         


        
3条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-21 04:28

    progDialog.setProgressNumberFormat(null);
    progDialog.setProgressPercentFormat(null);
    

提交回复
热议问题