EditText焦点问题
我有一个编辑文本,它作为屏幕上的第一个小部件放置。因此,每次加载页面时,光标都会位于此编辑文本内,这是我不需要的。当页面加载时,如何从中移除焦点?我尝试使用 edittext.clearFocus()
,但没有成功。有人可以回复我一个解决方案吗?提前致谢。
I have an edit text which is placed as the first widget in my screen. So every time the page load the cursor stands inside this edit text, which I don't require. How can I remove focus from this when the page gets loaded? I tried with edittext.clearFocus()
, but it didn't work out. Can anyone please reply me a solution? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可用于抑制键盘,直到用户实际触摸 edittext 视图。
来自关闭/隐藏Android软键盘:
This can be used to suppress the keyboard until the user actually touched the edittext view.
From Close/hide the Android Soft Keyboard:
您可以将请求焦点放在任何其他字段中,或者这不应该是第一个字段。
You can have request focus in any other field, or this should not be the first field.