我需要帮助,我构建了计算器应用程序,但是当我单击add,sub或equal按钮时没有值,应用程序将崩溃。否则,如果我先插入值,则运行时没有错误。帮助
等于
的按钮FloatingActionButton fab = findViewById(R.id.fab);
fab.bringToFront();
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Value2 = Float.parseFloat(ed1.getText() + "" );
if (mAddition == true){
ed1.setText(Value1 + Value2 +"");
mAddition=false;
}
if (mSubtract == true){
ed1.setText(Value1 - Value2 +"");
mSubtract=false;
}
}
});
Sub的按钮
FloatingActionButton btn_Sub = findViewById(R.id.btn_Sub);
btn_Sub.bringToFront();
btn_Sub.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Value1 = Float.parseFloat(ed1.getText() + "");
mSubtract = true ;
ed1.setText("");
}
});
添加按钮
FloatingActionButton btn_Add = findViewById(R.id.btn_Add);
btn_Add.bringToFront();
btn_Add.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (ed1 == null){
ed1.setText("");
}else {
Value1 = Float.parseFloat(ed1.getText() + "");
mAddition = true;
ed1.setText("");
}
}
});
我该怎么办?
这是我的logcat
04-29 22:27:18.861 10722-10722/afif.calfits V/FA: onActivityCreated
04-29 22:27:18.891 10722-10722/afif.calfits D/skia_ext: turboImageDecoder took 27.87ms to decode 1024x768 (1x downscale)
04-29 22:27:19.151 10722-10744/afif.calfits V/FA: Activity resumed, time: 5774739
04-29 22:27:19.151 10722-10744/afif.calfits D/FA: Logging event (FE): screen_view(_vs), Bundle[{firebase_event_origin(_o)=auto, firebase_previous_class(_pc)=Food, firebase_previous_id(_pi)=-2803431669891477858, firebase_screen_class(_sc)=Dairy, firebase_screen_id(_si)=-8225789602144573450}]
04-29 22:27:20.261 10722-10722/afif.calfits D/AndroidRuntime: Shutting down VM
04-29 22:27:20.261 10722-10722/afif.calfits E/AndroidRuntime: FATAL EXCEPTION: main
Process: afif.calfits, PID: 10722
java.lang.NumberFormatException: Invalid float: ""
at java.lang.StringToReal.invalidReal(StringToReal.java:63)
at java.lang.StringToReal.parseFloat(StringToReal.java:308)
at java.lang.Float.parseFloat(Float.java:306)
at afif.calfits.Dairy$4.onClick(Dairy.java:95)
at android.view.View.performClick(View.java:4756)
at android.view.View$PerformClick.run(View.java:19761)
at android.os.Handler.handleCallback(Handler.java:739)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5253)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694)
答案 0 :(得分:1)
这是因为您正在尝试解析一个空字符串,该字符串不是Float.parseFloat()
方法的正确参数。来自以下documentation:
public static float parseFloat(String s)抛出NumberFormatException
返回一个初始化为由指定String表示的值的新float,由Float类的valueOf方法执行。
<强>参数:强>
s - 要解析的字符串。
的返回:强>
字符串参数表示的浮点值 的抛出:强>
NullPointerException - 如果字符串为null
NumberFormatException - 如果字符串不包含可解析的float。
如果字符串为null,则可以看到该方法将抛出NullPointerException
;如果字符串不是float,则该方法将抛出NumberFormatException
。空字符串不是浮点数,因此您将收到NumberFormatException
因此,您需要检查空字符串并使用以下内容捕获错误:
String text = ed1.getText().toString();
float value;
// check if text is empty or not.
if(text.isEmpty()) {
value = 0;
} else {
try {
value = Float.parseFloat(text);
} catch(NumberFormatException e) {
// text is not a number, set it as 0.
value = 0;
}
}
答案 1 :(得分:0)
您没有添加日志或错误,因此我无法确切地说明您的错误或问题,但在显示您的代码之后我认为,此行中存在问题: -
在这里,您需要使用editext.gettext()添加.toString()。
In,Button for Equal替换此行
Value2 = Float.parseFloat(ed1.getText() + "" );
与
if( !ed1.getText().toString().equals("")){
Value2 = Float.parseFloat(ed1.getText().toString() + "" );
}
与Sub的按钮相同
FloatingActionButton btn_Sub = findViewById(R.id.btn_Sub);
btn_Sub.bringToFront();
btn_Sub.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if( !ed1.getText().toString().equals("")){
Value1 = Float.parseFloat(ed1.getText().toString() + "");
mSubtract = true ;
ed1.setText("");
}
}
});
与添加按钮
相同
FloatingActionButton btn_Add = findViewById(R.id.btn_Add);
btn_Add.bringToFront();
btn_Add.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (ed1 == null){
ed1.setText("");
}else {
if( !ed1.getText().toString().equals("")){
Value1 = Float.parseFloat(ed1.getText().toString() + "");
mAddition = true;
ed1.setText("");
}
}
}
});
答案 2 :(得分:0)
我认为您的问题与.toString ()
而非NumberFormatException
无关。
Float.parseFloat()
抛出NumberFormatException − if the string does not contain a parsable float.
因此,当你在edittext中没有放任何东西时,它只会得到空字符串。空字符串不是可解析的数字,而是NumberFormatException
。
更多出轨click here
你可以这样做:
Sub的按钮
FloatingActionButton btn_Sub = findViewById(R.id.btn_Sub);
btn_Sub.bringToFront();
btn_Sub.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
try {
Value1 = Float.parseFloat(ed1.getText() + "");
mSubtract = true ;
ed1.setText("");
} catch(NumberFormatException e) {
Toast.makeText(YOUR_ACTIVITY_CLASS.this, "Invalid Number", Toast.LENGTH_LONG).show();
}
}
});