Android在btn上隐藏键盘单击[重复]

Posted

技术标签:

【中文标题】Android在btn上隐藏键盘单击[重复]【英文标题】:Android hide keyboard on btn click [duplicate] 【发布时间】:2013-03-03 21:33:48 【问题描述】:

我想在按钮的点击事件中隐藏键盘。任何帮助将不胜感激

【问题讨论】:

【参考方案1】:
InputMethodManager inputManager = (InputMethodManager)
                                  getSystemService(Context.INPUT_METHOD_SERVICE); 

inputManager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(),
                                     InputMethodManager.HIDE_NOT_ALWAYS);

我把它放在 onClick(View v) 事件之后。 你需要import android.view.inputmethod.InputMethodManager;

点击按钮时键盘隐藏。

【讨论】:

【参考方案2】:

隐藏虚拟键盘:

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(editView.getWindowToken(), 0);

【讨论】:

以上是关于Android在btn上隐藏键盘单击[重复]的主要内容,如果未能解决你的问题,请参考以下文章

如何在输入键上隐藏键盘

如何在不单击后退按钮的情况下隐藏键盘[重复]

如何默认隐藏键盘并仅在单击 EditText 时显示 [重复]

即使使用输入管理器也无法隐藏 Android 软键盘

使用 Appium 时,Android 物理设备中的键盘并不总是隐藏

如何在键盘打开时隐藏浮动按钮(Android/iOS)?