android – 如何使用adjustResize去除屏幕顶部的白色条带

前端之家收集整理的这篇文章主要介绍了android – 如何使用adjustResize去除屏幕顶部的白色条带前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
键盘打开时,屏幕顶部会出现白色条带,无论键盘状态如何变化,它都会持续存在.

如果我使用adjustPan然后它工作,但是,我想只使用adjustResize.

这是问题的图像:

我在AndroidManifest.xml中的活动声明

<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 Mode的技术.我认为现在它是实现全屏活动的首选方式.

这是来自文档的example.

原文链接:https://www.f2er.com/android/318501.html

猜你在找的Android相关文章