今天我已经开始构建我的第一个 android 应用程序,我习惯于使用 Java,但是我不知道如何在我的 android 应用程序中做一些事情。这是一个简单的计算器,如果用户输入无效数字,我会尝试显示消息对话框。
这是我的代码:
public void calculate(View v) {
EditText theNumber = (EditText) findViewById(R.id.number);
int num;
try {
num = Integer.parseInt(theNumber.getText().toString());
} catch (NumberFormatException e) {
//missing code here
}
}
在 Java SE 中,我会这样做:
public void calculate(View v) {
EditText theNumber = (EditText) findViewById(R.id.number);
int num;
try {
num = Integer.parseInt(theNumber.getText().toString());
} catch (NumberFormatException e) {
JOptionPane.showMessageDialog("Invalid input");
}
}
我怎么能在android中做到这一点?