First, the keyboard does not disappear, Popuwindow in the lower layout size unchanged
Popupwindow=new Popupwindow (popuview,layoutparams.wrap_content, layoutparams.wrap_content);//need to set this parameter, click outside to disappear Popupwindow.setbackgrounddrawable (New bitmapdrawable ()); Set the window outside of the click Window disappears popupwindow.setoutsidetouchable (true); Setting the pop-up form requires a soft keyboard, popupwindow.setinputmethodmode (popupwindow.input_method_needed);//re-set the mode, like the activity, overwrite. Popupwindow.setsoftinputmode (WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);
second, the keyboard does not disappear, popuwindow in the lower layer, the layout of the move
third, the keyboard disappears
Popupwindow=new Popupwindow (popuview,layoutparams.wrap_content, layoutparams.wrap_content);//need to set this parameter, click outside to disappear Popupwindow.setbackgrounddrawable (New bitmapdrawable ()); Set the window outside of the click Window disappears popupwindow.setoutsidetouchable (true); Popupwindow.setfocusable (TRUE);
Settings for Popuwindow and soft keyboard coexistence