EditText就不能被弹起键盘顶起
问题:LinearLayout中的EditText就可以成功被弹出键盘顶起来,但NestedScrollView
中的EditText就不能被顶起 解决方案
解决方案
- AndroidManifest.xml文件中找到对应的activity设置windowSoftInputMode属性为“adjustResize”
- 在NestedScrollView或者ScrollView外层套一层非滚动布局,例如LinearLayout作为根节点,设置fitsSystemWindows属性为true。