Android隐藏软键盘

 InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
 if (imm.isActive()) {
	imm.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(),
	InputMethodManager.HIDE_NOT_ALWAYS);
 }


你可能感兴趣的:(android,软键盘)