Android 键盘 Enter/Next 按钮处理程序

发布于 2024-12-17 03:51:19 字数 182 浏览 2 评论 0原文

在我的 Android 应用程序中,我有 4 个 EditText 布局如下:

E11   E12

E21   E22

当我在 E11 中编写并点击 Enter 或 TAB 时,它会将 E21 作为默认的 Android 行为。我怎样才能使它转到E12?

In my Android application I have 4 EditTexts laid out like this:

E11   E12

E21   E22

When I'm writing in E11 and tap Enter or TAB, it focus E21 as a default Android behaviour. How can I make it go to E12 instead?

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

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

发布评论

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

评论(1

情深已缘浅 2024-12-24 03:51:19

您需要查看以下 xml 属性:

  • android:nextFocusUp
  • android:nextFocusLeft
  • android:nextFocusDown
  • android:nextFocusRight

更多信息和示例教程可以在此找到 链接

You would want to look at the following xml attributes :

  • android:nextFocusUp
  • android:nextFocusLeft
  • android:nextFocusDown
  • android:nextFocusRight

More information and sample tutorial can be found at this link.

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