Double x=Double.parseDouble(textview.getText().toString());
Double y=Double.parseDouble(edittext.getText().toString());
Double z=x*y;
finalcost=z+costofevents;
或者是他们找到两个值并添加到finalcost对象的任何新方法
答案 0 :(得分:1)
如果Double.parseDouble(...)
导致问题,请尝试将字符串转换为 Double ,如
Double.valueOf(textview.getText().toString());
修改强>
另外,请确保您已正确宣布TextView
和EditText
。