繁体   English   中英

如何删除进度条底部的进度条编号?

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

如何删除图片上的环绕?

在此输入图像描述

非常感谢您的帮助! :)

创建ProgressDialog时,将null传递给setProgressNumberFormat()setProgressPercentFormat() 请注意,这仅适用于API级别11及更高版本。

我需要一个类似的功能 - >在progressDialog处于不确定状态时隐藏percenatge和min / max。

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);
    }
}

如果要从进度对话框中禁用上述数字状态,则应删除此代码。

progress1.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);

在这里,我将向您展示如何创建不会显示任何状态的进度条

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM