Android TabLayout 和片段

Android TabLayout and Fragments

我已经学习 Android 几个月了,但我有几个问题找不到解决方案。 最近,我遵循了一些教程,其中解释了 TabLayout、Fragments 和 RecyclerView,但这对我来说不值得。 我需要一个 Android 界面,其中有几个选项卡,内容不同,但我需要的是启用滚动。 这是我的代码:

<android.support.design.widget.CoordinatorLayout
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:id="@+id/coordinator_main_content"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
    android:id="@+id/appbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">


    <android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        app:layout_scrollFlags="scroll|enterAlways" />

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


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

解决方案:要解决这个问题,我们必须使用 NestedScrollView