本文介绍了防止键盘在活动开始时显示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的活动包含编辑文字
输入。初始化活动时,将显示Android键盘。在用户关注输入之前,键盘如何保持隐藏状态?
I have an activity with an Edit Text
input. When the activity is initialized, the Android keyboard is shown. How can the keyboard remain hidden until the user focuses the input?
推荐答案
我认为以下内容可能有效
I think the following may work
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);
之前我曾用它做过这类事。
I've used it for this sort of thing before.
这篇关于防止键盘在活动开始时显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!