键盘打开时,屏幕顶部会出现一条白色的条,无论键盘状态如何变化,该条都会持续存在。

如果我使用adjustPan,那么它可以工作,但是,我只想使用adjustResize

这是问题的图像:

android - 如何使用AdjustResize消除屏幕顶部的白条-LMLPHP

我在AndroidManifest.xml中的 Activity 声明

<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>

最佳答案

KitKat中提供了一种称为Immersive Full-Screen模式的技术。我认为这是现在实现全屏 Activity 的首选方式。

这是来自文档的example

10-06 07:09