Android SeekBar值未正确传递给calculate方法

时间:2013-09-30 00:42:49

标签: java android

在OnSeekBarChangeListener类的OnProgressChanged方法中,我有一个计算提示百分比并在屏幕上显示它的方法。它似乎仅从值0和100起作用,而不是在它们之间的任何值。

public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
                // TODO Auto-generated method stub
                progress = ((int)Math.round(progress/5 ))*5;
                seekBar.setProgress(progress);
                String tipValStr = String.valueOf(progress);
                tipVal = progress;
                tvTipVal.setText(tipValStr);
                //Toast.makeText(TipCalc.this, "Seekbar Value : " + progress, Toast.LENGTH_SHORT).show();
                calculate(progress);
            }

public void calculate(int tip){
        try{
        DecimalFormat df = new DecimalFormat("#.00");
        billVal = Double.parseDouble(etBillVal.getText().toString());
        //tipVal = sbTipVal.getProgress();
        tipValue = billVal * (tip/100);
        billTotal = billVal + tipValue;
        tvBillVal.setText("$"+df.format(billVal));
        tvTipValue.setText("+ $" + df.format(tipValue));
        tvBillTotal.setText("$"+df.format(billTotal));
        Toast.makeText(TipCalc.this, "$"+df.format(billTotal), Toast.LENGTH_SHORT).show();
        }
        catch(Exception e){
            //billVal = 0;
        }
    }

1 个答案:

答案 0 :(得分:1)

我猜你的问题是整数除法。 int tip除以100,除非tip值为100,否则将始终返回0,在这种情况下,结果为1

尝试将tip定义为float而不是.-

public void calculate(float tip);

tipValue = billVal * (tip / 100.0f);