Android:菜单和后退按钮停止工作
对于我的 Android 应用程序,我的主屏幕上有多个编辑文本。如果我有第一个编辑文本处于焦点,菜单/后退按钮可以正常运行,如果我有任何其他编辑文本处于焦点,那么它们都不起作用。我没有对相对于编辑文本的菜单/后退按钮做任何特别的事情,我不确定原因是什么?有没有人遇到过类似的问题和/或知道原因/解决方案?
谢谢!
For my android app I have multiple edittexts on the main screen. If i have the first edittext in focus the menu/back buttons operate fine, if i have any of the other edittexts in focus than neither of them work at all. I'm not doing anything special regarding the menu/back buttons relative to that edittext, i'm not sure what the cause is? Has anyone run into a similar issue and/or know of the cause/solution?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我遇到了同样的问题,我找到了解决方案,当我将其更改为
return false;
时,我有OnKeyListener
返回 true; 问题已修复OnKeyListener.onKey(android.view.View, int, android.view.KeyEvent)
I was have the same problem and I found solution for I was have
OnKeyListener
thatreturn true;
when I change it toreturn false;
the problem was fixedOnKeyListener.onKey(android.view.View, int, android.view.KeyEvent)
对我来说很容易解决,我删除了唯一的键盘应用程序。
只需安装键盘应用程序,按钮就可以再次使用
easy fix for me, I had removed the only keyboard app.
just install a keyboard app and the buttons worked again