AndEngine 中游戏未退出

发布于 2024-12-26 05:53:30 字数 214 浏览 0 评论 0原文

游戏退出按钮上,

在我使用的

 System.runFinalizersOnExit(true);
 System.exit(0);

我也只尝试

finish();

过游戏退出,但它不起作用,游戏退出并再次重新启动。任何人都可以帮我解决这个问题,解决方案是什么?

On exit button of my game

I used

 System.runFinalizersOnExit(true);
 System.exit(0);

I have also tried only

finish();

on game exit but its not working the game exits and restarts again. Can any one help me with this problem what is the solution?

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

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

发布评论

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

评论(1

﹎☆浅夏丿初晴 2025-01-02 05:53:30

Android(以及其他一些移动平台,加上网络)没有“退出”应用程序的概念。用户只需转到另一个应用程序的活动,系统(最终)就会从内存中清除该进程。

当您的 Activity 离开时,它会通过生命周期回调收到通知。如有必要,您可以在那里进行清理。

退出应用程序会让人皱眉吗?

Android (and some other mobile platforms, plus web) do not have a concept of "exiting" the app. User just goes to another app's activity and the system (eventually) clears the process from memory.

When your Activity is leaved it gets notified via lifecycle callbacks. There you can do cleanup if necessary.

Is quitting an application frowned upon?

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