1

我需要滚动我的 AppBarLayout 并使用我的 RecyclerView 折叠 CollapsingToolbarLayout 并让它在子 ImageView 上进行视差滚动。

我设法使用 NestedScrollView 做到了这一点,但它没有与 RecyclerView 一起使用!

<android.support.v4.widget.DrawerLayout
    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:id="@+id/leagueDrawerLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".LeagueActivity">

    <android.support.design.widget.CoordinatorLayout
        android:id="@+id/leagueCoordinatorLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.design.widget.AppBarLayout
            android:id="@+id/leagueAppBarLayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:fitsSystemWindows="true">

我试图让 AppBarLayout 的每个孩子都有一个 scrollFlag ,如图所示

            <android.support.design.widget.CollapsingToolbarLayout
                android:id="@+id/leagueCollapsingToolBar"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:fitsSystemWindows="true"
                app:contentScrim="?attr/colorPrimary"
                app:expandedTitleMarginEnd="64dp"
                app:expandedTitleMarginStart="48dp"
                app:layout_scrollFlags="scroll|exitUntilCollapsed">

                <ImageView
                    android:id="@+id/leagueTopClub"
                    android:layout_width="match_parent"
                    android:layout_height="260dp"
                    android:src="@drawable/arsenal_squad"
                    android:scaleType="centerCrop"
                    app:layout_collapseMode="parallax"
                    app:layout_scrollFlags="scroll|enterAlways"/>
            </android.support.design.widget.CollapsingToolbarLayout>

我试过在这里使用 NestedScrollbar 并且它有效,但我需要一个 RecyclerView

             <android.support.v7.widget.RecyclerView
                  app:layout_behavior="@string/appbar_scrolling_view_behavior"
                  android:id="@+id/leagueRecyclerView"
                  android:layout_width="match_parent"
                  android:layout_height="wrap_content"
                  android:background="@android:color/white"
                  android:scrollbars="vertical"/>
        </android.support.design.widget.AppBarLayout>

    </android.support.design.widget.CoordinatorLayout>
...
</android.support.v4.widget.DrawerLayout>."

请帮忙,我已经尝试将 scrollFlags 添加到 CoordinatorLayout 的每个孩子,但没有奏效。

4

1 回答 1

0

RecyclerView真的需要成为 的兄弟AppBarLayout,而不是你拥有它的孩子。否则您的布局似乎没问题,只需将RecyclerView移至CoordinatorLayout.

<CoordinatorLayout>
    <AppBarLayout>
         ...
    </AppBarLayout>

    <RecyclerView />
</CoordinatorLayout>
于 2015-08-09T15:44:53.727 回答