我有两个EditText视图和一个按钮在Linearlayout。编辑完成后,我想隐藏Android虚拟键盘,我该怎么做?
你可以这样使用InputMethodManager类:
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow( yourEditText.getWindowToken(),InputMethodManager.RESULT_UNCHANGED_SHOWN);