完成活动后如何取下键盘?
我有一个用户在其中输入的活动,然后单击“确定”按钮。完成后,活动关闭并返回到旧活动,但软键盘仍然在屏幕上!我已经尝试过 android:windowSoftInputMode="stateHidden" ,但
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
它什么也没做。
I have an activity that users type inside and then click the ok button. When it is finished, the activity closes and goes back to the old activity but the soft keyboard is still on the screen! I've tried android:windowSoftInputMode="stateHidden"
and
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
But it does nothing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Activity 的 OnPause 中,您应该执行以下操作
其中 et 是 EditText 的实例。
In OnPause of your activity, you should do the following
Where et is an instance of your EditText.