CoordinatorLayout 与 NestedScrollView 和水平滚动 RecyclerView
CoordinatorLayout with NestedScrollView and Horizontal Scrolling RecyclerView
我有一个 CoordinatorLayout 和一个 AppBarLayout collapse/expand 滚动工具栏。内容视图是一个带有 RecyclerViews(水平滚动)的 NestedScrollView 和一些没有滚动视图的其他视图。与 Airbnb 应用非常相似。
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<include layout="@layout/toolbar_flat" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:id="@+id/newstedScrollView"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/consistentGreyWhite"
android:paddingBottom="@dimen/activity_vertical_margin"
android:clipToPadding="false"
android:orientation="vertical">
<android.support.v7.widget.RecyclerView
android:id="@+id/home_slider"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/consistentWhite"
android:clipToPadding="false"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="14dp"
android:paddingRight="14dp"
android:paddingTop="@dimen/activity_vertical_margin"
/>
<... other elements ...>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
如果我在没有滚动视图的元素上滚动,工具栏 collapse/expand 会起作用。但是,如果我在 RecyclerView 上执行滚动(垂直),则工具栏无法按预期工作。似乎 RecyclerViews 没有将滚动事件传递给 CoordinatorLayout。
我也遇到过这个问题
将此 属性 添加到您的 NestedScrollView
标签
app:layout_behavior="@string/appbar_scrolling_view_behavior"
此外,对片段或 activity 中的每个 recyclerView 对象执行以下操作。如果您嵌套 recycler_views'.
,也可以在您的适配器中
recyclerView.setNestedScrollingEnabled(false);
将此 属性 添加到您的 Recycler View
。
app:layout_behavior="@string/appbar_scrolling_view_behavior"
您也可以将此添加到 Recycler View
。
mRecyclerView.setNestedScrollingEnabled(false);
像这样。
<android.support.v7.widget.RecyclerView
android:id="@+id/home_slider"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
NestedScrollView
和 android:fillViewport="true"
也一样。
您可以使用 android:fillViewport="true"
使 NestedScrollView
测量 RecyclerView
。
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
我有一个 CoordinatorLayout 和一个 AppBarLayout collapse/expand 滚动工具栏。内容视图是一个带有 RecyclerViews(水平滚动)的 NestedScrollView 和一些没有滚动视图的其他视图。与 Airbnb 应用非常相似。
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<include layout="@layout/toolbar_flat" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:id="@+id/newstedScrollView"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/consistentGreyWhite"
android:paddingBottom="@dimen/activity_vertical_margin"
android:clipToPadding="false"
android:orientation="vertical">
<android.support.v7.widget.RecyclerView
android:id="@+id/home_slider"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/consistentWhite"
android:clipToPadding="false"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="14dp"
android:paddingRight="14dp"
android:paddingTop="@dimen/activity_vertical_margin"
/>
<... other elements ...>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
如果我在没有滚动视图的元素上滚动,工具栏 collapse/expand 会起作用。但是,如果我在 RecyclerView 上执行滚动(垂直),则工具栏无法按预期工作。似乎 RecyclerViews 没有将滚动事件传递给 CoordinatorLayout。
我也遇到过这个问题
将此 属性 添加到您的 NestedScrollView
标签
app:layout_behavior="@string/appbar_scrolling_view_behavior"
此外,对片段或 activity 中的每个 recyclerView 对象执行以下操作。如果您嵌套 recycler_views'.
,也可以在您的适配器中recyclerView.setNestedScrollingEnabled(false);
将此 属性 添加到您的 Recycler View
。
app:layout_behavior="@string/appbar_scrolling_view_behavior"
您也可以将此添加到 Recycler View
。
mRecyclerView.setNestedScrollingEnabled(false);
像这样。
<android.support.v7.widget.RecyclerView
android:id="@+id/home_slider"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
NestedScrollView
和 android:fillViewport="true"
也一样。
您可以使用 android:fillViewport="true"
使 NestedScrollView
测量 RecyclerView
。
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior">