Android - ViewPager适用于SystemWindows(全屏)无效

时间:2015-12-29 15:02:35

标签: android android-fragments android-viewpager android-fullscreen

我的布局中有一个ViewPager:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">

<android.support.v4.view.ViewPager
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:fitsSystemWindows="true"
    android:layout_height="match_parent" />

</RelativeLayout>

我希望所有片段都处于全屏模式(屏幕也应该在状态栏下)。我也设置了那个活动:

    getWindow().getDecorView().setSystemUiVisibility(
            View.SYSTEM_UI_FLAG_LAYOUT_STABLE |
                    View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
    );

并尝试了几次思考,但没有任何效果。在另一个Activity中,此代码可以正常工作。

你知道问题出在哪里吗?

查看屏幕截图。它仍然位于状态栏下方: enter image description here

3 个答案:

答案 0 :(得分:0)

对于活动全屏,使用该特定活动的清单中的全屏主题

<activity
   android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
 .../>

或者您也可以使用Activity.setTheme()

以编程方式应用主题

如果您希望将自己的应用内容作为状态栏的背景包含在内,则无法在新版本中自定义状态栏背景的颜色。

答案 1 :(得分:0)

把它放在style.xml

<style name="Login" parent="AppTheme">
    <item name="android:windowFullscreen">true</item>
</style>

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimary</item>
    <item name="colorAccent">@color/colorAccent</item>
    <item name="android:windowNoTitle">true</item>
    <item name="android:windowBackground">@color/white</item>
    <item name="drawerArrowStyle">@style/DrawerArrowStyle</item>
    <item name="android:textColorPrimary">@color/white</item>
    <item name="colorControlNormal">@color/white</item>
</style>

和清单中的这个

 <activity
        android:name=".ui.activities.LoginActivity"
        android:theme="@style/Login"/>

答案 2 :(得分:0)

删除android:fitsSystemWindows="true"。当您要防止某些组件显示在状态栏和导航栏上时,将使用该标志。