如何知道何时按下主页按钮?

发布于 2025-01-03 21:19:57 字数 106 浏览 0 评论 0原文

在我的应用程序中,我想进行更改,在任何时间点,即在任何活动中,我按下主页按钮,它都会显示一个对话框,询问“您想注销吗?” 。

我读过,无法覆盖主页按钮。 这是真的吗? 有什么想法吗?

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 技术交流群。

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

发布评论

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

评论(3

灼疼热情 2025-01-10 21:19:58

您可以覆盖“后退”按钮,但不能覆盖“主页”按钮。对于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!

半步萧音过轻尘 2025-01-10 21:19:57

嗨,据我所知,您无法处理 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

北风几吹夏 2025-01-10 21:19:57

没有直接的方法可以做到同样的事情。就像您无法获取 HOME 键的 KeyDown 事件一样。但我们可以通过以下代码捕获 HOME 键并保持在同一屏幕中

@Override
public void onAttachedToWindow() {
    this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD);

    super.onAttachedToWindow();
}

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

@Override
public void onAttachedToWindow() {
    this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD);

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