在 Android 中设置焦点
我的应用程序包含一个 EditText、按钮和一些有关活动的信息。
当它加载时,用户总是将注意力集中在 EditText 上,这导致 Softkwyboard 加载到屏幕上。我不需要关注负载。如何设置默认 onload 时取消聚焦我的 EditText 字段。所以我想停止加载键盘。
My application contain one EditText, Button and some information on activity.
When it loads user always got focused on EditText, which caused softkwyboard loaded on screen. I need to set no focus on load. how to set unfocus my EditText field by default onload. So that I want to stop loading keyboard on load.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该在代码文件中添加下面的代码,然后您的问题就得到了解决。
this.getWindow().setSoftInputMode(
WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
You should add the blow code in the code file then you got solution of your problem.
this.getWindow().setSoftInputMode(
WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
在清单文件下的活动标记中设置以下内容:
Set following in the activity tag under manifest file: