0
私は数ヶ月間Androidを学習してきましたが、解決策が見つからない質問がいくつかあります。 最近、私はTabLayout、Fragments、RecyclerViewについて説明しているチュートリアルに従っていますが、それは私の価値がありません。 いくつかのタブで、内容が異なるAndroidインターフェースが必要ですが、私が必要とするのはスクロールを有効にすることです。 これは私のコードです:Android TabLayout and Fragments
<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" />
を使用する必要があります – Jotadrive