我正在开发财务应用程序,它应该包含总工资和相应事物的支出金额,比如杂货、电费、交通、互联网。我已经取了值并计算了百分比,现在问题是因为计算在double
. 但是下面的语句int
只取值,但我想显示在progress bar
not in 中progress dialog
。
progressDialog.incrementProgressBy(x);
int amount2 = b.getInt("restaurant",2);
double res = ((double)amount2/amount) * 100;
TextView txt2 = (TextView) findViewById(R.id.tv2);
txt2.setText("percentage2\t" + res);
金额是总工资,amount2
是餐厅账单。所以现在百分比值是 indouble
并且现在必须显示在progress bar
.