天天看點

android狀态欄白色,android – 狀态欄變為白色,不顯示其背後的内容

我在Marshmallow上嘗試AppCompat.我希望有一個透明的狀态欄,但它會變成白色.我嘗試了幾種解決方案,但它們對我不起作用(

Transparent status bar not working with windowTranslucentNavigation=”false”,

Lollipop : draw behind statusBar with its color set to transparent).這是相關的代碼.

我的styles.xml

@color/theme_primary

@color/theme_primary_dark

@color/theme_accent

false

true

true

@color/background_material_light

V21

true

@android:color/transparent

活動

android:layout_width="match_parent"

android:layout_height="match_parent"

android:fitsSystemWindows="true">

android:id="@+id/pager"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:fitsSystemWindows="true" />

分段

xmlns:app="http://schemas.android.com/apk/res-auto"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:fitsSystemWindows="true">

android:id="@+id/appbar"

android:layout_width="match_parent"

android:layout_height="192dp"

android:fitsSystemWindows="true"

android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

android:id="@+id/collapsing_toolbar"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:fitsSystemWindows="true"

app:contentScrim="?attr/colorPrimary"

app:expandedTitleMarginBottom="32dp"

app:expandedTitleMarginEnd="64dp"

app:expandedTitleMarginStart="48dp"

app:layout_scrollFlags="scroll|exitUntilCollapsed"

app:statusBarScrim="@color/black_trans80">

android:id="@+id/photo"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:contentDescription="@string/photo"

android:fitsSystemWindows="true"

android:scaleType="centerCrop"

app:layout_collapseMode="parallax" />

android:id="@+id/anim_toolbar"

android:layout_width="match_parent"

android:layout_height="?attr/actionBarSize"

app:layout_collapseMode="pin"

app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

android狀态欄白色,android – 狀态欄變為白色,不顯示其背後的内容