1. 程式人生 > >Toolbar 被系統狀態列覆蓋bug

Toolbar 被系統狀態列覆蓋bug

Toolbar經常會隨著theme 以及style變化,今天發現一個問題就是,在專案中生成一個ScrollingActivity,
卻出現Toolbar被系統欄覆蓋了。
但是新建一個專案,預設生成ScrollingActivity,Toolbar卻正常。

<android.support.design.widget.AppBarLayout
        android:id="@+id/app_bar"
        android:layout_width="match_parent"
        android:layout_height="@dimen/app_bar_height"
android:fitsSystemWindows="true" android:theme="@style/AppTheme.AppBarOverlay"> <android.support.design.widget.CollapsingToolbarLayout android:id="@+id/toolbar_layout" android:layout_width="match_parent" android:layout_height="match_parent"
android:fitsSystemWindows="true" app:contentScrim="?attr/colorPrimary" app:layout_scrollFlags="scroll|exitUntilCollapsed"> <android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize" app:layout_collapseMode="pin" app:popupTheme="@style/AppTheme.PopupOverlay"/> </android.support.design.widget.CollapsingToolbarLayout> </android.support.design.widget.AppBarLayout>

各種theme,style設定後,仍不起作用。比對後發現唯一不同的是support:appcompat-v7版本,果不其然,22.2.1以下版本跑在android 6.0以上是有問題的。改為22.2.1及以上版本就正常了。