android 访问下一个按钮事件

发布于 2024-08-31 06:19:32 字数 137 浏览 3 评论 0原文

我不知道它是否很清楚,但我试图在按下“下一个”(键盘右下角)时执行某些操作,但我找不到它的键码。 我尝试在键码中查找“下一个”或“输入”,但没有任何真正相关的...... 有人知道吗?

(实际上,我发现输入键码是精确的,但它没有做任何事情)

I don't know if it's very clear, but i'm trying to do something when the "next" (bottom right corner of the keyboard) is pressed, and i can't find its keycode.
I have tried to look for "next" or "enter" in the keycodes but nothing really relevant...
does anyone know?

(actually, i've found the enter keycode to be precise, but it does not do anything)

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

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

发布评论

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

评论(1

梦亿 2024-09-07 06:19:32

EditText 上调用 setOnEditorActionListener(),并为 EditText 提供合适的 android:imeActionId 值和合适的 < code>android:imeOptions 值(例如,"actionSearch")。当用户点击该按钮时,您提供给 setOnEditorActionListener() 的侦听器将收到通知。

Call setOnEditorActionListener() on the EditText, and give that EditText a suitable android:imeActionId value and a suitable android:imeOptions value (e.g., "actionSearch"). The listener you provide to setOnEditorActionListener() will be notified when the user taps that button.

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