请求专注于编辑文本
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以指定
layout.xml 中的 属性。例如(对于 edittext1):
You can specify
property in your layout.xml. For example (for edittext1):
调用
requestFocus()
在你的第三个 editText 上。Call
requestFocus()
on your third editText.