我的布局类似于下图所示的布局。
<ScrollView>
<LinearLayout>
...
</LinearLayout>
<ViewPager>
</ScrollView>
ViewPager
的高度等于ActionBar
下面的屏幕高度。
滚动时,viewPager
的一半可见。RecylerView
中ViewPager
段的垂直滚动会干扰ScrollView
的主卷轴。
我想要一个解决方案,确保viewpager中的RecyclerView
滚动被禁用,直到viewpager完全可见。
main.xml中
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/footer"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_marginLeft="@dimen/secondary_margin"
android:layout_marginRight="@dimen/secondary_margin"
android:id="@+id/scroll_view">
<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<include layout="@layout/home_deals_slider" />
<include layout="@layout/top_selling_slider" />
...
<TabLayout>
<android.support.v4.view.ViewPager
android:id="@+id/fragments_view_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/fragments_view_pager_tab" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
fragment.xml之
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/staggered_grid_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical" />
</RelativeLayout>
...