1
下の図に示すように、2つのビューページ(1つはタブの下にあり、もう1つは折りたたみツールバー内にあります)とタブレイアウトがあります。2つのビューページと1つのタブレイアウトでのスワイプの問題
私の問題は、ビューページをスワイプすると、他のビューページもスワイプ(自動的に)してタブに表示されるようにするためです。
Iは
tabLayout.setupWithViewPager(mBottomViewPager);
を用いて底viewpagerとタブをスワイプすることが可能だが、コーディネータ・レイアウト内側上部断片をスワイプすることができません。
私は
tabLayout.setupWithViewPager(mBottomViewPager);
を試みたが、それは唯一の上面図ページャとタブをスワイプ。
私は1つのビューページとタブをスワイプできますが、ビューページとタブの両方をスワイプすることはできません。
どうすればこの問題を解決できますか?
マイフラグメントレイアウト:
<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/main_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context="com.ac.srikar.coupon.LocalFragment">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="256dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="208dp"
android:background="@color/colorPrimary"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginBottom="20dp"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:id="@+id/select_location_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white"
android:onClick="selectLocationButtonHandler"
android:text="Select Location"
android:textColor="@color/defaultButtonColor" />
<android.support.v4.view.ViewPager
android:id="@+id/local_top_pager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
app:layout_collapseMode="parallax" />
</LinearLayout>
</android.support.design.widget.CollapsingToolbarLayout>
<android.support.design.widget.TabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="48dp"
android:gravity="bottom"
app:tabGravity="center"
app:tabMode="fixed" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/local_bottom_pager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fragment_child_local"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>