当未折叠时,工具栏的某些部分在 CollapsingToolbarLayout 的 ImageView 上可见

When not collapsed some part of the the toolbar is visible over the ImageView of CollapsingToolbarLayout

CollapsingToolbarView 工作得很好,但折叠工具栏的 ImageView 上有这个不需要的条带。

如下图所示,状态栏后有一个红色条带(可能是工具栏)。我该如何摆脱它?

     

下面是相关的 xml 文件:

fragment_movie.xml

<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:fitsSystemWindows="true"
    tools:context="com.jayeshsolanki.mmdb.ui.fragment.MovieFragment">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerview_movie"
        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/appbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

        <android.support.design.widget.CollapsingToolbarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_scrollFlags="scroll|exitUntilCollapsed"
            app:contentScrim="?attr/colorPrimaryDark"
            app:title="@string/placeholder_movie_item_title">

            <ImageView
                android:id="@+id/backdrop_movie"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:scaleType="centerCrop"
                android:adjustViewBounds="true"
                app:layout_collapseMode="parallax"
                tools:src="@drawable/placeholder_movie_item_backdrop"/>

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar_movie"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                app:layout_collapseMode="pin"/>

        </android.support.design.widget.CollapsingToolbarLayout>

    </android.support.design.widget.AppBarLayout>

</android.support.design.widget.CoordinatorLayout>

父 activity 的主题在清单中设置为 "@style/AppTheme.NoActionBar"

尝试从图像中删除 adjustViewBounds 属性。您正在使用 centerCrop,它应该足以让图像正确显示并填充所有 space。通过调整视图边界,您可以保持宽高比,因此图像不会填满应用栏 space。

android:fitsSystemWindows="true" 应该在 CoordinatorLayoutAppBarLayoutCollapsingToolbarLayout 和里面的 ImageView 上。