动态显示/隐藏软键盘

4.动态显示软键盘

 

@TargetApi(Build.VERSION_CODES.CUPCAKE)

public static void showSoftInput(Context context, EditText edit) {

        edit.setFocusable(true);

        edit.setFocusableInTouchMode(true);

        edit.requestFocus();

        InputMethodManager inputManager = (InputMethodManager) context

                .getSystemService(Context.INPUT_METHOD_SERVICE);

        inputManager.showSoftInput(edit, 0);

    }

 

5.动态显示或者是隐藏软键盘

 

@TargetApi(Build.VERSION_CODES.CUPCAKE)

public static void toggleSoftInput(Context context, EditText edit) {

        edit.setFocusable(true);

        edit.setFocusableInTouchMode(true);

        edit.requestFocus();

        InputMethodManager inputManager = (InputMethodManager) context

                .getSystemService(Context.INPUT_METHOD_SERVICE);

        inputManager.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);

    }

-----------------------------------------------------------------------------------------------

动态隐藏软键盘

InputMethodManager imm = (InputMethodManager)
            getSystemService(Context.INPUT_METHOD_SERVICE);
             if(imm != null) {  
                 imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);
             }

原文地址:https://www.cnblogs.com/Jingerxin/p/5327704.html