我正在尝试学习 CoordinatorLayout 及其功能。我已将它与 AppBarLayout 结合使用。我的xml如下:
<android.support.design.widget.CoordinatorLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways" />
</android.support.design.widget.AppBarLayout>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_gravity="bottom|end"
style="@style/FabStyle"/>
</android.support.design.widget.CoordinatorLayout>
我面临的问题是滚动工具栏位于状态栏下方。当我滚动回收站视图时,我希望工具栏滚动,但我不希望它位于状态栏下方。我该如何防止这种情况发生。
此外,当我尝试将 CoordinatorLayout 封装在另一个布局中时,例如:LinearLayout,主题中定义的 primaryDark 颜色不会显示在状态栏中。当我像上面的 xml 一样使用它时,它会显示 primaryDark 颜色。有一个更好的方法吗?