Android强制隐藏输入法键盘

在Android开发中,有时候需要对键盘进行隐藏,以下就是强制隐藏输入法键盘的方法

    /**
     * 强制隐藏输入法键盘
     *
     * @param context Context
     * @param view    EditText
     */
    public static void hideInput(Context context, View view) {
        InputMethodManager inputMethodManager = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
        inputMethodManager.hideSoftInputFromWindow(view.getWindowToken(), 0);
    }


你可能感兴趣的:(android开发)