方法一、Window window = getWindow();
Window window = getWindow();
if (window != null) {
// 关闭键盘
window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
}
方法二、InputMethodManager
InputMethodManager imm = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE);
if (getCurrentFocus() != null && null != imm) {
Log.d("hideSoftInput", "======hideSoftInput: ==2222222======");
imm.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), 0);
}
方法三、editext使用完
————————————————
版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
原文链接:https://blog.csdn.net/shi450561200/article/details/133804816