AndEngine 中游戏未退出
游戏退出按钮上,
在我使用的
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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?