Android 开发中隐藏输入法

	//隐藏输入法
	public void hideInput(){
		if(MiniBrowser.this.getCurrentFocus()!=null){ 是否存在焦点
			InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
			inputMethodManager.hideSoftInputFromWindow(MiniBrowser.this.getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
		}
	}


你可能感兴趣的:(Android 开发中隐藏输入法)