键盘打开时,屏幕顶部会出现白色条带,无论键盘状态如何变化,它都会持续存在。
如果我使用adjustPan
然后它有效,我只想使用adjustResize
。
<activity
android:name=".MainActivity"
android:screenOrientation="portrait"
android:theme="@style/MyTheme"
android:windowSoftInputMode="adjustResize"/>
<style name="MyTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowDrawsSystemBarBackgrounds"
tools:targetApi="lollipop">false</item>
</style>
答案 0 :(得分:1)
KitKat中提供了一种称为Immersive Full-Screen模式的技术。我认为现在它是实现全屏活动的首选方式。
这是来自文档的example。
答案 1 :(得分:-1)
从活动的布局文件中删除此白条。我不能多说你没有提供你的布局xml。
我建议您使用Hierarchy Viewer进行布局调试。