在应用程序中返回主屏幕的命令是什么?
当用户处于不同班级并单击手机上的后退/返回按钮时,如何让应用程序返回“主”屏幕?
现在,当他们访问不同的类并点击后退按钮时,它会返回到 Droid 上的主屏幕,而不是应用程序上的主屏幕 - 我如何让它返回到应用程序上的主屏幕?
谢谢!
How do I have an app return to the 'Home' screen when the user is on a different class and they click the back/return button on their phone?
Right now, when they access a different class and hit the back button, it goes back to the Home screen on the Droid rather than the Home screen on the app - how do I get it to go back to the Home Screen on the app?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Activity 类的 OnBackPressed() 方法。
设定如下条件:
Use OnBackPressed() method of Activity class.
Make conditions like :
你不能,
主页按钮是唯一无法阻止关闭应用程序的按钮。这样做是为了让您无法阻止应用程序内的用户(如病毒)。
其他键(例如后退菜单和研究)可以
在您的活动中使用
you can't,
the home button is the only you can't prevent form closing your app. Its done so that you can't block the user inside your applications (like a virus).
the other keys like back menu and research are possible
in your activity