按下硬件搜索按钮取消 AlertDialog

发布于 2024-11-25 13:53:34 字数 326 浏览 0 评论 0原文

我在我的应用程序中显示一个 AlertDialog,尽管我已将其设置为不可取消,但当按下硬件搜索按钮时,它会被取消。

我尝试重写 keyDown 方法并检测按键以及 onSearchRequested 方法。但是,它们在第一次按下按钮时都不起作用,但之后它们就起作用了。

有什么想法吗?

PS:我知道这是一个重复的问题。 ...但没有人回复,这就是重新发布的原因:)

I am showing an AlertDialog in my app and even though I have set it to be non-cancelable, it gets cancelled when the hardware search button is pressed.

I tried overriding the keyDown method and detecting the key press and also the onSearchRequested method. But both of them do not work for the first time the button is pressed though they work after that.

Any ideas?

PS: I know this is a repeated question.... but nobody replied to it, that's why re-posting :)

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

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

发布评论

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

评论(1

鼻尖触碰 2024-12-02 13:53:34

您应该能够使用 OnKeyListener 来完成此操作。在这种情况下,仅允许使用 DPAD 键。

return new AlertDialog.Builder(this)
    .setTitle("Title")
    .setMessage("Dialog message")
    .setCancelable(false)
    .setOnKeyListener(new DialogInterface.OnKeyListener() {

        public boolean onKey(DialogInterface dialog, int keyCode, KeyEvent event) {
            //whitelist allowed keys - allow navigation keys only
            if (keyCode < KeyEvent.KEYCODE_DPAD_UP || keyCode > KeyEvent.KEYCODE_DPAD_CENTER) {
                return true;
            }
            return false;
        }
    })
.create();

You should be able to do it with an OnKeyListener. In this case, only DPAD keys are allowed.

return new AlertDialog.Builder(this)
    .setTitle("Title")
    .setMessage("Dialog message")
    .setCancelable(false)
    .setOnKeyListener(new DialogInterface.OnKeyListener() {

        public boolean onKey(DialogInterface dialog, int keyCode, KeyEvent event) {
            //whitelist allowed keys - allow navigation keys only
            if (keyCode < KeyEvent.KEYCODE_DPAD_UP || keyCode > KeyEvent.KEYCODE_DPAD_CENTER) {
                return true;
            }
            return false;
        }
    })
.create();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文