本文介绍了Android - 在 android 5.0(棒棒糖)键盘启动时调整滚动视图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在 android 棒棒糖上遇到了问题,当软键盘出现时屏幕没有调整大小.
I have a problem on android lollipop, screen doesn't adjust size when the softkeyboard comes up.
这是我所做的一项活动的清单介绍示例:
This is my manifest intro example from one of the activity i made:
android:windowSoftInputMode="stateAlwaysHidden|adjustResize"
是否添加了一些新的东西,我们必须考虑到 android 5.0?滚动视图在 android < 上运行良好5.0.
Is there something new that is added and we have to take into account for android 5.0 ? The scrollview works fine on android < 5.0.
推荐答案
问题是它在半透明状态栏上不起作用,我不得不设置
the problem was that it didn't work with translucent status bar and i had to set
android:fitsSystemWindows="true"
在我的主要布局中
这篇关于Android - 在 android 5.0(棒棒糖)键盘启动时调整滚动视图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!