我有一个 TabLayout,它有一个 ViewPager,它在两个都具有垂直滚动 RecyclerViews 的片段之间进行选择。我有一个滚动的 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>