CollapsingToolbarLayout 中的选项卡与 RecyclerView 重叠

Tabs in CollapsingToolbarLayout overlapping RecyclerView

我有一个 TabLayout,它有一个 ViewPager,可以在两个片段之间进行选择,这两个片段都有垂直滚动的 RecyclerView。我有一个滚动的 TabLayout,这样当我滚动 RecyclerView 时,选项卡就会消失。但是,它从 TabLayout 与 RecyclerView 的第一个项目重叠开始,将其切断。我曾尝试向 ViewPager 添加边距,但即使在选项卡已滚出屏幕后该边距仍然存在。我该如何更改它,使选项卡不与 RecyclerView 的第一项重叠?

<android.support.design.widget.CoordinatorLayout
    android:id="@+id/main_content"
    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.design.widget.CollapsingToolbarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_scrollFlags="scroll|enterAlways">

            <android.support.design.widget.TabLayout
                android:id="@+id/sliding_tabs"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:tabGravity="fill"
                app:tabMaxWidth="0dp"
                app:tabMode="fixed"
                app:tabPadding="5dp"/>

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

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

    <android.support.v4.view.ViewPager
        android:id="@+id/viewpager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

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

layout_behavior 添加到您的查看寻呼机

<android.support.v4.view.ViewPager
     android:id="@+id/id_viewpager"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     app:layout_behavior="@string/appbar_scrolling_view_behavior" />