我正在尝试为 Android 创建一个应用程序,我按照本教程http://developer.android.com/training/basics/firstapp/starting-activity.html
有一部分
/** Called when the user clicks the Send button */
public void sendMessage(View view) {
// Do something in response to button
}
然后我按照本教程进行操作,一切正常,直到我删除参数View view
我的问题是为什么每次我删除它,所以函数就是:
/** Called when the user clicks the Send button */
public void sendMessage() {
// Do something in response to button
}
我运行该应用程序,它强制关闭。
谁能启发我?谢谢你