我在Linearlayout中有两个EditText视图和一个Button。完成edittext中的写入后,我想隐藏Android虚拟键盘,我该怎么做?
答案 0 :(得分:17)
您可以像这样使用InputMethodManager类:
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow( yourEditText.getWindowToken(),InputMethodManager.RESULT_UNCHANGED_SHOWN);