2

如果我有如下所示的配置,例如高度超过屏幕高度的自定义View内部,我无法折叠它。CollapsingToolbarLayout我需要做什么?我需要有一个内容会向上滚动并在其recyclerview下方滚动。没有视差或其他效果,只需滚动即可。

   <android.support.v4.widget.SwipeRefreshLayout
        android:id="@+id/refresher"
        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:background="@color/accent_material_light"
        android:isScrollContainer="false">

       <android.support.design.widget.CoordinatorLayout
                android:id="@+id/coordinator"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:fitsSystemWindows="true"
                tools:context=".MainActivity">


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

                <android.support.design.widget.CollapsingToolbarLayout
                        android:id="@+id/collapsing_toolbar"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:fitsSystemWindows="true"
                        app:layout_scrollFlags="scroll|exitUntilCollapsed">

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

                    <View android:layout_width="match_parent"
                          android:layout_height="1500dp"
                          android:background="@color/green_A100"
                          app:layout_scrollFlags="scroll"
                            />
                </android.support.design.widget.CollapsingToolbarLayout>

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

            <android.support.v7.widget.RecyclerView
                    android:id="@+id/recycle_view"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:background="@color/cardview_light_background"
                    android:scrollbars="vertical"
                    app:layout_behavior="@string/appbar_scrolling_view_behavior"

                    />
        </android.support.design.widget.CoordinatorLayout>
    </android.support.v4.widget.SwipeRefreshLayout>
4

1 回答 1

1

根据支持库 23.1 发布博客文章

您还会发现,AppBarLayout现在允许用户从 AppBarLayout 内开始滚动,而不仅仅是从您的可滚动视图内开始滚动

如果您想从AppBarLayout/中开始滚动CollapsingToolbarLayout,您需要至少更新到23.1.0设计库的版本。

于 2015-10-24T23:45:45.650 回答