美文网首页
android点击界面隐藏键盘

android点击界面隐藏键盘

作者: yu_yue | 来源:发表于2018-05-10 16:46 被阅读6次
public static void hideSoftInputView(Activity activity) {
    InputMethodManager manager = (InputMethodManager)activity.getSystemService(Context.INPUT_METHOD_SERVICE);
    if(activity.getWindow().getAttributes().softInputMode != 2 && activity.getCurrentFocus() != null) {
        manager.hideSoftInputFromWindow(activity.getCurrentFocus().getWindowToken(), 2);
    }

}

相关文章

网友评论

      本文标题:android点击界面隐藏键盘

      本文链接:https://www.haomeiwen.com/subject/ksctdftx.html