Android Popupwindow中ScrollView中软键盘无法置顶EditText

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/Zone_Q/article/details/78919912

问题描述:Popupwindow中ScrollView中存在很多EditText,软键盘无法把EditText顶上去

解决办法:1、去掉ScollView的滚动条——在xml中添加属性android:scrollbars="none"

2、设置软键盘弹出方式为:setInputMethodMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE | WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);

猜你喜欢

转载自blog.csdn.net/Zone_Q/article/details/78919912