Android 隐藏软键盘功能的实现
程序员文章站
2022-04-21 17:56:36
...
Activity context = (Activity) mContext;
final View v = context.getWindow().peekDecorView();
if (v != null && v.getWindowToken() != null) {
InputMethodManager imm = (InputMethodManager) context.getSystemService(context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
}
上一篇: 全局异常捕获处理
下一篇: 崩溃bug日志总结1