如何知道何时按下主页按钮?
在我的应用程序中,我想进行更改,在任何时间点,即在任何活动中,我按下主页按钮,它都会显示一个对话框,询问“您想注销吗?” 。
我读过,无法覆盖主页按钮。 这是真的吗? 有什么想法吗?
In my app I want to make a change that at any point of time i.e at any activity I press Home button it shows a dialog box asking for "You want to logout?" .
I have read that overriding of Home button is not possible.
Is that true?
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以覆盖“后退”按钮,但不能覆盖“主页”按钮。对于android来说就是用户的“ctrl+alt+del”!
You can override the "back" button but you cannot override the Home button. It is the user's "ctrl+alt+del" for android!
嗨,据我所知,您无法处理 Android 中的“主页”按钮。但是是的,你可以这样做,按照这个 Catch keypress with android
hi you can't handle Home button in android as per to my knowledge. but yes you can do like this follow this Catch keypress with android
没有直接的方法可以做到同样的事情。就像您无法获取 HOME 键的 KeyDown 事件一样。但我们可以通过以下代码捕获 HOME 键并保持在同一屏幕中
There is no direct way to do the same. like you can not get the KeyDown event for the HOME key. but we can get the HOME key captured and stay in the same screen by following code