Android keyboard pops up and hide

 //弹出软键盘
        InputMethodManager inputMethodManager = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
        inputMethodManager.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);


 //隐藏软键盘
                InputMethodManager inputMgr = (InputMethodManager) context
                        .getSystemService(Context.INPUT_METHOD_SERVICE);
                inputMgr.toggleSoftInput(InputMethodManager.HIDE_NOT_ALWAYS, 0);
Published 184 original articles · won praise 70 · views 370 000 +

Guess you like

Origin blog.csdn.net/qq_31939617/article/details/103929691