/**
* 隱藏輸入法的示例代碼
*/
voidhideSoftKeyboard() {
InputMethodManager inputMethodManager = (InputMethodManager)mContext
.getSystemService(Context.INPUT_METHOD_SERVICE);
if(inputMethodManager !=null&& getCurrentFocus() !=null) {
inputMethodManager.hideSoftInputFromWindow(getCurrentFocus()
.getWindowToken(),
InputMethodManager.RESULT_UNCHANGED_SHOWN);// 強(qiáng)制關(guān)閉軟鍵盤
}
}