0

只是想让大家知道这是我正在尝试创建的第一个应用程序。因此,如果我问任何愚蠢的问题,我深表歉意。我正在尝试创建一个警报对话框,该对话框将返回一个数字以供稍后在应用程序中使用。该对话框显示在模拟器上,但在选择其中一个选项时应用程序崩溃。

01-22 17:37:43.925: I/Process(443): Sending signal. PID: 443 SIG: 9
01-22 17:52:47.395: D/dalvikvm(480): GC_EXTERNAL_ALLOC freed 42K, 53% free 2550K/5379K, external 1625K/2137K, paused 48ms
01-22 17:53:01.145: W/KeyCharacterMap(480): No keyboard for id 0
01-22 17:53:01.145: W/KeyCharacterMap(480): Using default keymap: /system/usr/keychars/qwerty.kcm.bin
01-22 17:53:02.205: D/AndroidRuntime(480): Shutting down VM
01-22 17:53:02.205: W/dalvikvm(480): threadid=1: thread exiting with uncaught exception (group=0x40015560)
01-22 17:53:02.225: E/AndroidRuntime(480): FATAL EXCEPTION: main
01-22 17:53:02.225: E/AndroidRuntime(480): java.lang.NumberFormatException: unable to parse 'null' as integer
01-22 17:53:02.225: E/AndroidRuntime(480):  at java.lang.Integer.parseInt(Integer.java:356)
01-22 17:53:02.225: E/AndroidRuntime(480):  at java.lang.Integer.parseInt(Integer.java:332)
01-22 17:53:02.225: E/AndroidRuntime(480):  at com.ciltild.mtgcardsandrules.PlayerTools.setAlertVar(PlayerTools.java:81)
01-22 17:53:02.225: E/AndroidRuntime(480):  at com.ciltild.mtgcardsandrules.PlayerTools$1.onClick(PlayerTools.java:41)
01-22 17:53:02.225: E/AndroidRuntime(480):  at com.android.internal.app.AlertController$ButtonHandler.handleMessage(AlertController.java:159)
01-22 17:53:02.225: E/AndroidRuntime(480):  at android.os.Handler.dispatchMessage(Handler.java:99)
01-22 17:53:02.225: E/AndroidRuntime(480):  at android.os.Looper.loop(Looper.java:123)
01-22 17:53:02.225: E/AndroidRuntime(480):  at android.app.ActivityThread.main(ActivityThread.java:3683)
01-22 17:53:02.225: E/AndroidRuntime(480):  at java.lang.reflect.Method.invokeNative(Native Method)
01-22 17:53:02.225: E/AndroidRuntime(480):  at java.lang.reflect.Method.invoke(Method.java:507)
01-22 17:53:02.225: E/AndroidRuntime(480):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
01-22 17:53:02.225: E/AndroidRuntime(480):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
01-22 17:53:02.225: E/AndroidRuntime(480):  at dalvik.system.NativeStart.main(Native Method)

以下是警报对话框的代码:

    @Override
protected Dialog onCreateDialog(int id){
    switch(id){

    case playerLifeDialog:
        LayoutInflater factory = LayoutInflater.from(this);
        final View playerSetLifeView = factory.inflate(R.layout.toolslifedialog, null);
        return new AlertDialog.Builder(PlayerTools.this)
            .setTitle("Set Life to:")
            .setView(playerSetLifeView)
            .setPositiveButton("Add", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int addButton) {
                    setAlertVar(toolsDialogText);
                    tempLifeVar = alertVar + playerLifeVar;
                }
            })
            .setNegativeButton("Subtract", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int setButton) {
                    setAlertVar(toolsDialogText);
                    tempLifeVar = playerLifeVar - alertVar;
                }
            })
            .setNeutralButton("Set", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int subButton) {
                    setAlertVar(toolsDialogText);
                    tempLifeVar = alertVar;
                }
            })
            .create();
        default:
    }
    return null;
}

我花了一周的时间查看其他人提出的问题,并在 Google 开发人员文档中试图弄清楚这一点。如果我对 Java 有更多的了解,我相信这不会那么难。但我已经被困在这个问题上太久了。另外,这是我第二次尝试创建这个应用程序。任何帮助将不胜感激。

这是 setAlertVar 代码:

public void setAlertVar(String toolsDialogText) throws NumberFormatException{
    alertVar = Integer.parseInt(toolsDialogText);
}
4

2 回答 2

0

在将 toolsDialogText 传递给 setAlertVar(toolsDialogText) 之前在哪里设置它的值;

所以如果你没有设置它,它有一个不能被 Integer 类解析的空值......最好检查一下

` if(!TextUtil.isEmpty(toolsDialogText)) {

alertVar = Integer.parseInt(toolsDialogText);

}

返回警报变量;`

于 2012-01-23T00:49:42.897 回答
0

您的问题出在您的setAlertVar()方法中,在第 81 行(如果没有 setAlertVar() 代码,很难说其他任何内容):

 at com.ciltild.mtgcardsandrules.PlayerTools.setAlertVar(PlayerTools.java:81)

如果您知道自己可能有无效数字,请尝试将引发上述异常的代码括起来:

try {
  int b = Integer.parseInt(string);
} catch (Exception e) {
  //handle the exception if necessary
}
于 2012-01-23T00:03:32.650 回答