android 禁用移动到下一个字段

发布于 2024-11-09 05:00:28 字数 199 浏览 0 评论 0原文

在我的 Android 应用程序中,我有几个线性布局的 editText。然后我在它们下面有几个采用相同线性布局的旋转器。如果选择了微调器项目,它将跳回编辑文本字段之一。我将其与填写网络表单时按 Tab 进行比较,它会自动跳转到下一个字段。这没什么问题,除非它跳回靠近布局顶部的位置,并且用户必须向下滚动才能单击提交按钮。有没有办法禁用自动移动,以便应用程序不会强制移动到下一个字段?

In my android application I have several editTexts in a linear layout. Then I have several spinners below them in the same linear layout. If a spinner item is selected it jumps back up to one of the edit text fields. I would compare it to pressing tab when your filling out a webform, it automatically jumps to the next field. That would be fine except it jumps back closer to the top of the layout and the user has to scroll back down to click the submit button. Is there any way to disable the automatic move so the application won't force a move to the next field?

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

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

发布评论

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

评论(2

往事风中埋 2024-11-16 05:00:28

我不知道是否有一种简单的方法可以完全禁用它。 设置属性来控制接下来获得焦点的视图

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

但是您可以通过在布局 xml 中 。您可以将它们设置为“@+id/idOfTheNextView”

I don't know if there is an easy way to disable it entirely. But you can control which views get focus next by setting the

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

attributes in your layout xml. You would set them ="@+id/idOfTheNextView"

烟凡古楼 2024-11-16 05:00:28

虽然这里晚了好几年,但您可以在 EditText 上使用此设置

android:imeOptions="actionDone"

Although late by years here but you can use this setting on the EditText

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