关注android中的第一个edtitext
我有四个编辑文本,问题是当我开始活动时,焦点将集中在最后一个编辑文本上,如何使用 xml 将焦点集中在第一个编辑文本上? 谢谢
I have four edittexts the problem is when i start activity the focus will be on the last edittext , how can i make the focus on the first edittext using xml ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Activity 的 onCreate();
onCreate(); of Activity
您可以使用 requestFocus 元素。
You can use the requestFocus element.
您还可以在活动 xml 中添加
选项卡。You can also add a
<requestFocus/>
tab in the activity xml.在 Android Studio 2.3.3 中,您可以在“属性”面板中单击要首先获得焦点的 EditText 上的focusedByDefault 属性。
In Android Studio 2.3.3, you can click on the focusedByDefault attribute in the Properties panel on the EditText you want the focus on first.