当我在格式方法中输入%0.02f作为参数时,小费计算器应用程序上的SeekBar崩溃。

tipAmountEditText.setText(String.format("%0.02f", tipAmount));


我通过删除整数部分从而变为%.02f来解决此问题。关于这个问题,我唯一可以说的功能是它使用ChangeListener弹出。我不明白为什么这会是一个问题,我希望有人能启发我。如果需要查看大图,我的代码全部在我的github上:https://github.com/xamroc/TipCalc

private OnSeekBarChangeListener tipSeekBarListener = new OnSeekBarChangeListener() {

    @Override
    public void onProgressChanged(SeekBar arg0, int arg1, boolean arg2) {

        tipAmount = (tipSeekBar.getProgress()) * .01;

        tipAmountEditText.setText(String.format("%.02f", tipAmount));

        updateTipAndFinalBill();

    }

};

最佳答案

您在这里String.format("%0.02f", tipAmount)

java.util.MissingFormatWidthException

//This Unchecked exception thrown when the format width is required.


Docs

原因:

%0.02f interprets as a floating point at least 0 wide.

Thats why it gives MissingFormatWidthException // as its assuming width to 0


所以用代替

String.format("%.02f", tipAmount)

10-04 13:55