首页 > 代码库 > Android 隐藏关闭软键盘

Android 隐藏关闭软键盘

直接复制代码就可以用

 

InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
if (imm != null) {
imm.hideSoftInputFromWindow(getWindow().getDecorView().getWindowToken(), 0);
}

Android 隐藏关闭软键盘