Android隐藏软键盘
public void hideSoftInput() { InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); inputMethodManager.hideSoftInputFromWindow( mSearchEditText.getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS); }