如何使用 android 代码在索尼 xperia 中自动隐藏键盘?
我在布局中使用 Textview
和 ImageView
显示某些内容,但在我的布局中没有
使用任何 EditView
。但是每当我在索尼 xperia 设备中运行我的应用程序时,我
都会看到键盘视图,我如何隐藏键盘,这个问题只出现在索尼 xperia 中,我该如何解决这个问题?
I am using Textview
and ImageView
display for some things in my layout,I did not
use any EditView
in my latout. But whenever I run my application in sony xperia device, I
got keyboard view, How can i hide keyboard, This problem only appear in sony xperia, How can I solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 maifest 文件中使用
android:windowSoftInputMode="stateHidden"
进行活动。use
android:windowSoftInputMode="stateHidden"
for your activity in maifest file.