2017-04-24 21 views
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" /> 

+0

を使用する必要があります – Jotadrive

答えて

1

SOLUTION:これを修正するために、我々は、スワイプが正常に機能していないが、ViewPagerの内部には、スクロールされ、今NestedScrollView

関連する問題