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

时间:2016-08-20 08:17:41

标签: android android-layout

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

如果我使用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>

2 个答案:

答案 0 :(得分:1)

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

这是来自文档的example

答案 1 :(得分:-1)

从活动的布局文件中删除此白条。我不能多说你没有提供你的布局xml。

我建议您使用Hierarchy Viewer进行布局调试。