如何隐藏Android软键盘?
这个问题在这里已经有了答案:
你可以像这样使用InputMethodManager类:
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow( yourEditText.getWindowToken(),InputMethodManager.RESULT_UNCHANGED_SHOWN);
链接地址: http://www.djcxy.com/p/16601.html
上一篇: How to hide Android Soft Keyboard?
下一篇: Prevent softkeyboard dismiss on the android back button press