RecyclerView behavior_overlapTop没有父级调整大小

时间:2018-02-25 12:59:20

标签: android android-recyclerview overlap android-collapsingtoolbarlayout

我使用CollapsingToolbarLayoutRecyclerView来显示一些电影细节。我已将behavior_overlapTop="40dp"设置为在背景图片上显示电影的海报。一切都很好但滚动时有一小部分灰色背景可以调整大小以填补RecyclerViewToolbar之间的空白,如图所示:

enter image description here

这是我的布局:

<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"

    android:fitsSystemWindows="true"
    tools:ignore="ContentDescription">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="220dp"
        android:fitsSystemWindows="true"
        android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
        app:layout_behavior="com.est.streamcorn.ui.customs.FixAppBarLayoutBehavior">

        <com.est.streamcorn.ui.customs.widgets.CustomCollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fitsSystemWindows="true"
            app:contentScrim="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|enterAlways|enterAlwaysCollapsed"
            app:scrimAnimationDuration="250"
            app:titleEnabled="false">

            <android.support.constraint.ConstraintLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:fitsSystemWindows="true"
                app:layout_collapseMode="parallax">

                <ImageView
                    android:id="@+id/trailer_image"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:orientation="vertical"
                    android:scaleType="centerCrop" />

                <android.support.v7.widget.AppCompatButton
                    android:id="@+id/trailer_button"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_horizontal"
                    android:background="@drawable/trailer_button_background"
                    android:drawablePadding="10.0dip"
                    android:drawableStart="@drawable/ic_play"
                    android:minHeight="40.0dip"
                    android:paddingEnd="25.0dip"
                    android:paddingStart="20.0dip"
                    android:text="@string/trailer"
                    android:textAllCaps="false"
                    android:textColor="@color/white"
                    android:textSize="15.0sp"
                    android:visibility="invisible"
                    tools:visibility="visible"
                    app:layout_constraintBottom_toBottomOf="parent"
                    app:layout_constraintEnd_toEndOf="parent"
                    app:layout_constraintStart_toStartOf="parent"
                    app:layout_constraintTop_toTopOf="parent" />

            </android.support.constraint.ConstraintLayout>

            <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/ThemeOverlay.AppCompat">

                <TextView
                    android:id="@+id/toolbar_title"
                    style="@style/TextAppearance.AppCompat.Widget.ActionBar.Title"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginEnd="5dp"
                    android:ellipsize="end"
                    android:singleLine="true" />

            </android.support.v7.widget.Toolbar>

        </com.est.streamcorn.ui.customs.widgets.CustomCollapsingToolbarLayout>

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

    <android.support.v7.widget.RecyclerView
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true"
        app:behavior_overlapTop="40dp"
        android:paddingBottom="5dp"
        android:clipToPadding="false"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />

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

有没有办法禁用它?或者至少将颜色改为白色? 谢谢。

2 个答案:

答案 0 :(得分:0)

当您开始打开应用栏时,会出现细细的暗线吗?这是工具栏的高程。要将其关闭,请将以下内容添加到工具栏XML:

android:elevation="0dp"

您还可以使用setElevation()以编程方式操作高程。如果您希望高程阴影存在一些时间而不是其他时间,则这可能很有用。

答案 1 :(得分:0)

我没有找到保持扩展部分透明的解决方案,因为我找到了一种解决方法,只需使用具有两种颜色的自定义窗口背景即可将其设置为白色:顶部为白色,底部为灰色。