我正在尝试使用百分比计算中的数据设置ProgressBar。
我在mProgress.setProgress(progresso)
;
DecimalFormat decimalFormat = new DecimalFormat("0.#");
String perc = decimalFormat.format(value);
tvPercentuale.setText(perc+"%");
ProgressBar mProgress;
int progresso = Integer.parseInt(perc);
mProgress = (ProgressBar) findViewById(R.id.progress_e);
mProgress.setProgress(progresso);
mProgress.setMax(100);