Android:在单后键按下软键盘时应隐藏并且活动也应完成,如何使其成为可能?
我有一项活动,其中有一个 EditText 组件和三个按钮。单击“EditText 组件”会弹出一个软键盘。
我收到一个错误,指出按一次后退键您应该转到上一个活动。目前仅隐藏软键盘。
我应该如何解决这个问题?
我收到建议,我应该制作一个自定义“文本框”。但我不知道我该怎么做。或者它如何解决我的问题。
制作自定义编辑文本或文本框可以解决这个问题吗?如果是的话怎么办?
编辑:如果这是不可能的,请告诉我它是如何不可能的?
编辑2: api 提供的关键监听器在这种情况下都不起作用。如果显示软键盘,按后退按钮将首先隐藏键盘...我们的实现仅在此之后才起作用。
编辑3:有人有什么想法吗???
I have one activity which has one EditText component and three buttons. Clicking on EditText Components pops a soft key board.
I have received a bug stating on single Back Key press you should go to the previous activity. Currently only soft key board is hidden.
How should I solve this issue?
I have got suggestion that I should make a custom 'Text box'. But I can not figure out how can I do this. Or How can it solve my problem.
Making a custom edit text or text box will solve this problem? If yes how?
EDIT: IF its impossible will you please tell me how its impossible?
Edit 2: None of the key listeners provided by api works in this case. If soft keyboard is shown pressing back button will hide the key board first... our implementation works only after that.
Edit 3: Anybody having any idea??????
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,你可以。请在此处查看我的答案:拦截软键盘的后退按钮
Yes, you can. See my answer here: Intercept back button from soft keyboard
将 onKeyListener 添加到您的 EditText 并捕获按键事件并完成您的活动。请参阅此处
add onKeyListener to your EditText and catch back key event and finish your activity. See here