且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

这行android代码有什么问题?

更新时间:2022-12-05 16:25:53

如果给定参数失败,我敢打赌它是一个.请尝试格式化您的代码,如下所示:
I bet it''s one if the given arguments that fail. Please try to format your code like this:
double dUnitSize = Double.parseDouble(unitSize.getText().toString());
double dValue = calculate(
      firstUnit.getSelectedItem().toString(),
      secondUnit.getSelectedItem().toString(),
      dUnitSize
);
answer.setText(dValue);


您很快就会发现问题所在.


you''ll soon find out which line the problem is.