CoordinatorLayout + FrameLayout + ViewPager + RecyclerView

时间:2018-09-13 08:48:18

标签: android android-recyclerview android-viewpager android-coordinatorlayout android-framelayout

我的应用程序:

enter image description here 我的根目录布局具有底部导航栏,NavigationBar的每个项目对应于一个FrameLayout,该加载的ViewPager s片段也包含RecyclerView s的多个片段。 / p>

我想在我的根目录布局中实现一个CollapsingToolbarLayout,并且当在任何RecyclerView的{​​{1}}中滚动ViewPager时,我想折叠collapsingtoolbar。

我的问题是,当FragmentViewPager的子代时,我可以实现这种行为,但是当CoordinatorLayoutFrameLayout的子代时,则不能实现。我需要实现CoordinatorLayout,否则我必须在每个FrameLayout的项目片段布局中编写工具栏代码。

这是我的根布局代码:

BottomBar

这是我的viewpager布局代码,它位于一个在framelayout中调用的片段中:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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.support.design.widget.CoordinatorLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <android.support.design.widget.AppBarLayout
            android:id="@+id/appBarLayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#4DBC76"
            app:elevation="0dp">

            <android.support.design.widget.CollapsingToolbarLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:layout_scrollFlags="scroll|enterAlways">

                <android.support.constraint.ConstraintLayout
                    android:layout_width="match_parent"
                    android:layout_height="60dp">

                </android.support.constraint.ConstraintLayout>

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


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

        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginBottom="125dp"
            app:layout_behavior="@string/appbar_scrolling_view_behavior"
            android:id="@+id/testRootFragment"
            >
        </FrameLayout>


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

    <bd.com.xbit.eat.bottom_navigation
        android:id="@+id/bottomNavigationViewTest"
        android:layout_width="match_parent"
        android:layout_height="65dp"
        app:elevation="25dp"
        app:itemTextColor="@drawable/bottom_selector"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:menu="@menu/bottom_navigation" />

</android.support.constraint.ConstraintLayout>

这是我在<android.support.v4.view.ViewPager android:id="@+id/viewPager" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_below="@+id/talesTabLayout" android:layout_marginTop="8dp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/talesTabLayout" app:layout_behavior="@string/appbar_scrolling_view_behavior"> 布局中的RecyclerView

Fragment

我在<android.support.v7.widget.RecyclerView android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/tales_all_recyclerView" app:layout_behavior="@string/appbar_scrolling_view_behavior" > </android.support.v7.widget.RecyclerView> appbar_scrolling_view_behaviorFramelayout中使用了“ ViewPager”属性,但没有成功。我在Google上搜索了很多,但是找不到与此特定问题有关的任何参考。任何帮助将不胜感激!

0 个答案:

没有答案