簡體   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