537_隐藏键盘

来源:互联网 发布:windows桌面插件api 编辑:程序博客网 时间:2024/05/22 19:31




隐藏键盘






        Method setShowSoftInputOnFocus = null;
        try {
            setShowSoftInputOnFocus = ed.getClass().getMethod(
                    "setShowSoftInputOnFocus", boolean.class);
            setShowSoftInputOnFocus.setAccessible(true);
            setShowSoftInputOnFocus.invoke(ed, false);
        } catch (SecurityException e) {
            e.printStackTrace();
        } catch (NoSuchMethodException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        }






                InputMethodManager imm = (InputMethodManager) mActivity.getSystemService(INPUT_METHOD_SERVICE);
                imm.hideSoftInputFromWindow(llTitleLeft.getWindowToken(), 0);



原创粉丝点击