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

前端 未结 3 1270
名媛妹妹
名媛妹妹 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:41

    I needed a similar functionality -> to hide the percenatge and min/max when the progressDialog is in indeterminate state.

    private void setIndeterminate(boolean isIndeterminate) {
        progressDialog.setIndeterminate(isIndeterminate);
        if (isIndeterminate) {
            progressDialog.setProgressNumberFormat(null);
            progressDialog.setProgressPercentFormat(null);
        } else {
            progressDialog.setProgressNumberFormat("%1d/%2d");
            NumberFormat percentInstance = NumberFormat.getPercentInstance();
            percentInstance.setMaximumFractionDigits(0);
            progressDialog.setProgressPercentFormat(percentInstance);
        }
    }
    

提交回复
热议问题