Android EditText 输入和虚拟键盘处理

发布于 2024-10-21 08:46:31 字数 124 浏览 1 评论 0原文

是否可以以某种方式检索 EditText 的输入,而无需在下面添加专用按钮(例如“SET”),只需触摸新兴键盘(Android 2.3.1)上的“完成”按钮?

如果是,我可以以某种方式处理此事件以继续采取进一步行动吗?

Is it possible in some way to retrieve the input of an EditText without needing to add a dedicated button underneath (e.g. "SET"), just by touching the "Done" button on the emerging keyboard (Android 2.3.1)?

And if yes, can I somehow handle this event for proceeding to further actions?

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

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

发布评论

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

评论(1

无敌元气妹 2024-10-28 08:46:31

试试这个

editText.setOnEditorActionListener(new OnEditorActionListener() {
    @Override
    public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
        if (actionId == EditorInfo.IME_ACTION_DONE) {
            // do your stuff here
        }
        return false;
    }
});

至于第二部分,以某种方式处理此事件以继续执行进一步操作是什么意思?

try this

editText.setOnEditorActionListener(new OnEditorActionListener() {
    @Override
    public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
        if (actionId == EditorInfo.IME_ACTION_DONE) {
            // do your stuff here
        }
        return false;
    }
});

As for the second part what do you mean by somehow handle this event for proceeding to further actions?

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