Android:OnEditorActionListener 未唤醒

发布于 2024-10-17 19:17:00 字数 419 浏览 0 评论 0原文

我看到一些帖子并编写代码来检测“完成”键盘按钮上的事件。 但是当实现它时,键码返回 6,事件返回 null。有什么原因要检测 DONE 按钮事件,我想改变焦点。

textEdit5.setOnEditorActionListener(new OnEditorActionListener() {

    public boolean onEditorAction(TextView arg0, int keycode, KeyEvent event) { 
      if(arg1 == KeyEvent.FLAG_EDITOR_ACTION){
        btnSave.requestFocus();
        return true;
      }

      return false;     
    }
);

谢谢。

I see some of post and make code to detect the event on "DONE" key pad button.
But when implement it the keycode return the 6 and event return the null.is there any why to detect the DONE button event,i want to change focus.

textEdit5.setOnEditorActionListener(new OnEditorActionListener() {

    public boolean onEditorAction(TextView arg0, int keycode, KeyEvent event) { 
      if(arg1 == KeyEvent.FLAG_EDITOR_ACTION){
        btnSave.requestFocus();
        return true;
      }

      return false;     
    }
);

Thank you.

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

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

发布评论

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

评论(1

夕嗳→ 2024-10-24 19:17:00

Please check this it out http://dev.bostone.us/2009/11/04/android-show-and-hide-soft-keyboard-programmaticaly/#awp::2009/11/04/android-show-and-hide-soft-keyboard-programmaticaly/

if you want to set focus on button then btnSave.requestFocusFromTouch();

Thank you.

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