状态栏不透明,而是乳白色

时间:2018-11-18 08:19:35

标签: java android xml android-layout

我已实现以下代码来获取透明状态栏,但无法 请帮助我。 如果fitSystemWindows为true,则状态栏不会变得透明;如果fitSystemWindows为false,则rootlayout内容将位于导航栏下方。 在应用程序上设置内容视图之前,我已经应用了以下代码。

@TargetApi(Build.VERSION_CODES.LOLLIPOP)
public static void setFullTheme(Activity activity){
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        Window window = activity.getWindow();
        window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
        window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
        window.setStatusBarColor(Color.TRANSPARENT);
    }
}

这是我应用于活动的主题

<style name="ThemeFullScreen" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
        <item name="android:statusBarColor" tools:targetApi="lollipop">@android:color/transparent
        </item>
        <item name="android:windowEnableSplitTouch">false</item>
        <item name="android:windowDrawsSystemBarBackgrounds">true</item>
        <item name="android:windowTranslucentStatus" tools:targetApi="kitkat">true</item>
        <item name="android:windowTranslucentNavigation">true</item>
    </style>

通过实现这些功能,状态栏变得透明,而导航栏也变得半透明,因此内容位于导航栏的后面。 因此,我将android:fitSystemWindows =“ true”应用于根视图,但之后状态栏变成了乳白色。

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main_container_home"
android:layout_width="match_parent"
android:layout_height="match_parent">


<FrameLayout
    android:id="@+id/main_frag_home"
    android:fitsSystemWindows="true"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <FrameLayout
        android:id="@+id/content_member_profile"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingBottom="?attr/actionBarSize">

    </FrameLayout>

    <com.aurelhubert.ahbottomnavigation.AHBottomNavigation
        android:id="@+id/bottom_navigation"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom" />
</FrameLayout>

下图,当我在根布局中将true设置为fitSystemWindows时。内容在导航栏后面。

下图,当我在根布局中删除fitSystemWindows属性时。状态栏颜色变为白色。

1 个答案:

答案 0 :(得分:0)

再次输入android:fitSystemWindows="true"并将主题中的android:windowDrawsSystemBarBackgrounds属性更改为false

导航到此https://developer.android.com/reference/android/R.attr文档,您可以找到

  

该窗口必须使用以下命令绘制系统栏背景   windowDrawsSystemBarBackgrounds和导航栏不得包含   被要求使用windowTranslucentNavigation是半透明的。   对应于Window.setNavigationBarColor(int)。