如何隐藏Android软键盘?

时间:2014-03-14 11:55:29

标签: android android-edittext android-softkeyboard android-virtual-keyboard

我在Linearlayout中有两个EditText视图和一个Button。完成edittext中的写入后,我想隐藏Android虚拟键盘,我该怎么做?

1 个答案:

答案 0 :(得分:17)

您可以像这样使用InputMethodManager类:

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow( yourEditText.getWindowToken(),InputMethodManager.RESULT_UNCHANGED_SHOWN);