/**
* 隐藏输入法的示例代码
*/
voidhideSoftKeyboard() {
InputMethodManager inputMethodManager = (InputMethodManager)mContext
.getSystemService(Context.INPUT_METHOD_SERVICE);
if(inputMethodManager !=null&& getCurrentFocus() !=null) {
inputMethodManager.hideSoftInputFromWindow(getCurrentFocus()
.getWindowToken(),
InputMethodManager.RESULT_UNCHANGED_SHOWN);// 强制关闭软键盘
}
}