我有MainActivity
个FrameLayout
占位符,我根据NavigationView选择切换/切出片段。我希望能够在它包含的任何片段(甚至是嵌套片段)中遇到滚动行为时,让MainActivity Toolbar滚动屏幕。
适用于HomeFragment (1)
,只包含SwipeRefreshLayout
和RecyclerView
。
但,适用于ViewPagerFragment (2)
,其中包含TabLayout
和ViewPager
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>
答案 0 :(得分:1)
没关系,显然我在另一个容器父中使用了另一个CoordinatorLayout而没有意识到它。只要确保你没有多个包含CoordinatorLayouts的内容,它就会搞砸你内部碎片中的布局。