文件.xml
edittext(inputtype=numberdecimal, id=text1) value(1.5)
edittext(inputtype=numberdecimal, id=text2) value("")
文件.java
txt1 = ((EditText)findViewById(R.id.Text1));
txt2 = ((EditText)findViewById(R.id.Text2));
s1 = txt1.getText().toString();
v1 = Float.parseFloat(s1); //true
s2 = txt2.getText().toString();
v2 = Float.parseFloat(s2); //error i want parse to (0)
为什么是错误?如果文本不输入数据,我希望默认值为零