我试图摆脱双精度中的一些小数位,我已经在应用程序的其他部分成功地完成了它,但我无法在这里弄清楚。双倍额外加入,我将其设置为编辑文本
double dryFree = sender.getExtras().getDouble("ResultFree");
else if (getIntent().hasExtra("ResultFree")) {
answer.setText( dryFree + "");
这是我尝试过的,但应用程序崩溃了
else if (getIntent().hasExtra("ResultFree")) {
answer.setText(String.format("%.2f", dryFree + ""));
数字来自的活动,我尝试在这里使用 string.format 但出现错误,我知道我用错了
total = (int) (a * b * c) / 0.424753;