首页 > 代码库 > Dialog中EditText获取焦点,并且自动弹出软键盘

Dialog中EditText获取焦点,并且自动弹出软键盘

       //解决dilaog中EditText无法弹出输入的问题
        dialog.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
        //弹出对话框后直接弹出键盘
        et_newReason.setFocusableInTouchMode(true);
        et_newReason.requestFocus();
        CmzStaffApplication.handler.postDelayed(new Runnable() {
            @Override
            public void run() {
                InputMethodManager inputManager =(InputMethodManager) et_newReason.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
                inputManager.showSoftInput(et_newReason, 0);
            }
        }, 100);

 

Dialog中EditText获取焦点,并且自动弹出软键盘