Android 完成错误

发布于 2024-11-29 08:19:39 字数 626 浏览 0 评论 0原文

刚开始一些基本的 Android 开发,我制作了一个带有 3 个按钮的小菜单。

其中之一是退出按钮(我知道完成活动并没有真正退出应用程序),但是当我调用它时,它会关闭应用程序并给我一个错误,指出应用程序已意外停止。

我的代码:

package darksea.game;

import android.app.Activity;
import android.os.Bundle;

public class DarkSeaActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }

    public void ExitGameEvent()
    {
        finish();
    }
}

ExitGameEvent 通过 xml 链接到按钮。

有想过为什么会出现这个错误吗?

Just started with some basic android development and I made a little menu with 3 buttons.

One of them is a quit button (I know that the finish activity doesn't really quit the application) but when I call it it closes the application and gives me a error saying that the application has stopped unexpectedly.

My code :

package darksea.game;

import android.app.Activity;
import android.os.Bundle;

public class DarkSeaActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }

    public void ExitGameEvent()
    {
        finish();
    }
}

The ExitGameEvent is linked to the button through xml.

Any thought on why it gives this error ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无悔心 2024-12-06 08:19:39

您的点击处理程序需要获取视图< /a> 作为从 XML 调用它的参数。尝试:

public void ExitGameEvent(View v)
    {
        finish();
    }

Your click handler needs to take a View as an argument for it to be valid to be called from XML. Try:

public void ExitGameEvent(View v)
    {
        finish();
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文