How to remove progress bar number at the bottom part of the progress bar?

前端 未结 3 1267
名媛妹妹
名媛妹妹 2021-01-17 11:51

How do I remove the encircled on the picture?

\"enter

Thanks a lot for any hel

3条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-17 12:34

    If you want to disable the above number status from progress dialogue, then you should remove this code.

    progress1.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
    

    Here i will show you that how to create progress bar which will not show any status

    progress1.setMessage("Fetching Files...! ");
    progress1.setIndeterminate(true);             
     progress1.show();
    

提交回复
热议问题