关注android中的第一个edtitext

发布于 2024-12-05 02:31:46 字数 70 浏览 2 评论 0原文

我有四个编辑文本,问题是当我开始活动时,焦点将集中在最后一个编辑文本上,如何使用 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 技术交流群。

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

发布评论

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

评论(4

箹锭⒈辈孓 2024-12-12 02:31:46

Activity 的 onCreate();

EditText firsteditText=(EditText)findViewById(R.id.first);
EditText secondeditText=(EditText)findViewById(R.id.second);
EditText thirdeditText=(EditText)findViewById(R.id.third);
EditText fourtheditText=(EditText)findViewById(R.id.fourth);

     firsteditText.requestFocus();

onCreate(); of Activity

EditText firsteditText=(EditText)findViewById(R.id.first);
EditText secondeditText=(EditText)findViewById(R.id.second);
EditText thirdeditText=(EditText)findViewById(R.id.third);
EditText fourtheditText=(EditText)findViewById(R.id.fourth);

     firsteditText.requestFocus();
陌生 2024-12-12 02:31:46

您可以使用 requestFocus 元素。

You can use the requestFocus element.

难以启齿的温柔 2024-12-12 02:31:46

您还可以在活动 xml 中添加 选项卡。

You can also add a <requestFocus/> tab in the activity xml.

江湖彼岸 2024-12-12 02:31:46

在 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.

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