如何以编程方式将焦点设置到按钮小部件?
是否可以将焦点设置到位于布局中某处的按钮小部件?我的控制/焦点应该以编程方式位于该按钮上。
Is it possible to set a focus to a button widget which lies somewhere down in my layout? onCreate
of the activity my control/focus should be on that button programmatically.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这是可能的。
或者在 XML 中
重要提示:按钮小部件需要
可聚焦
和focusableInTouchMode
。默认情况下,大多数小部件都是可聚焦
的,但不是focusableInTouchMode
。 设置它因此请确保在代码或 XML 中
Yeah it's possible.
or in XML
Important Note: The button widget needs to be
focusable
andfocusableInTouchMode
. Most widgets arefocusable
but notfocusableInTouchMode
by default. So make sure to either set it in codeor in XML
试试这个:
Try this: