隐藏输入栏void hideIME(View view) {if (view ! null) {InputMethodManager imm (InputMethodManager)
隐藏输入栏
void hideIME(View view) {if (view != null) {InputMethodManager imm = (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE); //imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);imm.hideSoftInputFromWindow(view.getWindowToken(), 0);}} 