CoordinatorLayout + CollapsingToolbarLayout在状态栏下方滚动

时间:2016-05-11 13:01:27

标签: android android-layout android-coordinatorlayout android-collapsingtoolbarlayout android-appbarlayout

我的布局有一个奇怪的问题。我有一个CoordinatorLayout,其中包含CollapsingToolBarLayout。我有一个透明的状态栏,以更好地显示顶部的图像。因此,我fitsSystemWindow设置ImageView。我现在遇到的问题是,当工具栏完全折叠时,工具栏的顶部会滚动到系统状态栏后面。有没有办法防止这种行为?

以下是截图:

Fully open

Almost closed

fully collapsed

这是我的布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/coordinatorLayout">
<android.support.design.widget.AppBarLayout
    android:id="@+id/main_appbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/main_collapsing"
        android:layout_width="match_parent"
        android:layout_height="350dp"
        app:layout_scrollFlags="scroll|exitUntilCollapsed"
        app:contentScrim="?attr/colorPrimary"
        app:expandedTitleMarginStart="140dp"
        app:expandedTitleMarginBottom="90dp"
        app:expandedTitleMarginEnd="64dp"
        android:fitsSystemWindows="true">
        <ImageView
            app:layout_collapseMode="parallax"
            android:id="@+id/icon"
            android:transitionName="pic"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scaleType="centerCrop"
            android:src="@drawable/missing_album_art"
            android:tint="#AA000000"
            android:fitsSystemWindows="true"/>
        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginBottom="20dp"
            app:layout_collapseMode="parallax">
            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="bottom"
                android:padding="20dp"
                android:orientation="horizontal">
                <ImageView
                    android:layout_width="100dp"
                    android:layout_height="100dp"
                    android:id="@+id/smallicon"/>
                <LinearLayout
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:orientation="vertical"
                    android:layout_gravity="bottom"
                    android:padding="20dp">
                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:id="@+id/artist"
                        android:ellipsize="end"
                        android:singleLine="true"
                        android:textSize="24sp"/>
                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:ellipsize="end"
                        android:singleLine="true"
                        android:id="@+id/date"/>
                </LinearLayout>
            </LinearLayout>
        </FrameLayout>
        <android.support.v7.widget.Toolbar
            android:id="@+id/main_toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
            app:layout_collapseMode="pin" />
    </android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    android:id="@+id/list"
    android:dividerHeight="2dp"
    android:transitionName="bottom">
</android.support.v7.widget.RecyclerView>
</android.support.design.widget.CoordinatorLayout>

此外,我在创建活动时稍微调整了布局参数:

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

1 个答案:

答案 0 :(得分:2)

android:fitsSystemWindows="true"添加到布局的根目录,即CoordinatorLayout

  

大多数情况下,您的应用程序不需要在状态栏或导航栏下绘制,但如果您这样做:您需要确保交互式元素(如按钮)不会隐藏在它们下面。这就是android:fitsSystemWindows =“true”属性的默认行为:它设置View的填充以确保内容不会覆盖系统窗口。

详细了解here