按下硬件搜索按钮取消 AlertDialog
我在我的应用程序中显示一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够使用 OnKeyListener 来完成此操作。在这种情况下,仅允许使用 DPAD 键。
You should be able to do it with an OnKeyListener. In this case, only DPAD keys are allowed.