PopupWindow中解决输入法遮盖住编辑框的问题

时间:2021-07-04 00:27:53

        问题如题:

解决方法:只需要设置PopupWindow的属性

mPopupWindow.setInputMethodMode(PopupWindow.INPUT_METHOD_NEEDED);

        mPopupWindow.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);

就能解决!!!