AppBarLayout滚动行为不适用于嵌套片段

时间:2016-04-29 08:46:51

标签: android android-fragments android-recyclerview android-coordinatorlayout android-appbarlayout

我有MainActivityFrameLayout占位符,我根据NavigationView选择切换/切出片段。我希望能够在它包含的任何片段(甚至是嵌套片段)中遇到滚动行为时,让MainActivity Toolbar滚动屏幕。

适用于HomeFragment (1),只包含SwipeRefreshLayoutRecyclerView

,适用于ViewPagerFragment (2),其中包含TabLayoutViewPager FragmentStatePagerAdapter以及类型{{1}的子片段它无法在包含ViewPagerItemFragment (3)的{​​{1}}上注册滚动事件。

完整的布局(剥离了主题或不必要的属性)如下所示。

layout_activity_main:

ViewPagerItemFragment's

layout_home_fragment(1):

RecyclerView

layout_fragment_viewpager(2):

<android.support.v4.widget.DrawerLayout
        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:fitsSystemWindows="true">

    <android.support.design.widget.CoordinatorLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">

        <android.support.design.widget.AppBarLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content">

            <android.support.v7.widget.Toolbar
                    android:layout_height="?attr/actionBarSize"
                    android:layout_width="match_parent"
                    app:layout_scrollFlags="scroll|enterAlways">

                <LinearLayout
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:gravity="center">

                    <Spinner
                            android:layout_width="wrap_content"
                            android:layout_height="match_parent"/>
                </LinearLayout>
            </android.support.v7.widget.Toolbar>
        </android.support.design.widget.AppBarLayout>

        <FrameLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
    </android.support.design.widget.CoordinatorLayout>

    <android.support.design.widget.NavigationView
            android:layout_width="@dimen/drawer_width"
            android:layout_height="match_parent"
            android:layout_gravity="start"
            android:fitsSystemWindows="true"/>
</android.support.v4.widget.DrawerLayout>

fragment_viewpager_item(3):

<android.support.v4.widget.SwipeRefreshLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    <android.support.v7.widget.RecyclerView
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>
</android.support.v4.widget.SwipeRefreshLayout>

1 个答案:

答案 0 :(得分:1)

没关系,显然我在另一个容器父中使用了另一个CoordinatorLayout而没有意识到它。只要确保你没有多个包含CoordinatorLayouts的内容,它就会搞砸你内部碎片中的布局。