请求专注于编辑文本

发布于 2024-10-28 16:53:22 字数 210 浏览 2 评论 0原文

我在 Android 应用程序中遇到了不同的问题。我按顺序取了 3 个 EditText。我的意图是当我在第一个 editText 上设置 OnClick 时,虚拟键盘就会出现。当我单击虚拟键盘上的“下一步”时,课程器将显示在第二个 EditText 中。但我不应该让课程器进入第二个编辑文本,它应该关注第三个编辑文本。我怎样才能专注于第三个编辑文本?

请帮忙。

提前致谢。

I have got different issue in android application. I have taken 3 EditTexts in order. My intention is when I setOnClick on 1st editText the virtual keypad appearing. When i clicked on next on virtual key pad the courser is displaying in 2nd EditText. But i should not get the courser in 2nd editText it shoulod focus on 3rd EditText. How can I focus in 3rd edittext?

Please, help.

Thanks in advance.

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

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

发布评论

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

评论(2

信愁 2024-11-04 16:53:22

您可以指定

android:nextFocusDown

layout.xml 中的 属性。例如(对于 edittext1):

android:nextFocusDown="@+id/edittext3"

You can specify

android:nextFocusDown

property in your layout.xml. For example (for edittext1):

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