具有嵌套 RecyclerView 和双向滚动的 ScrollView

ScrollView with nested RecyclerViews and bidirectional scroll

我想实现如下图所示的效果

两个列表视图一起垂直滚动,其中一个还可以水平滚动以显示更多内容。

我在 Google Discover 的一张卡片中看到了它,我想将它应用到我的一个项目中。 我可以尝试自己实现它,但由于它被 Google 使用,也许它已经可用,例如作为 material 设计组件等。

到目前为止我找不到任何类似的东西。

最终使用这个布局找到了解决方案。

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:overScrollMode="never">

   <LinearLayout
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:orientation="horizontal"
       android:weightSum="2">

       <android.support.v7.widget.RecyclerView
           android:id="@+id/left_recycler_view"
           android:layout_width="0dp"
           android:layout_height="wrap_content"
           android:nestedScrollingEnabled="false"
           android:layout_weight="1" />

       <HorizontalScrollView
           android:layout_width="0dp"
           android:layout_height="wrap_content"
           android:layout_weight="1">

           <android.support.v7.widget.RecyclerView
               android:id="@+id/right_recycler_view"
               android:layout_width="wrap_content"
               android:nestedScrollingEnabled="false"
               android:layout_height="wrap_content" />

       </HorizontalScrollView>

   </LinearLayout>
</android.support.v4.widget.NestedScrollView>

两个回收站视图都有一个简单的 LinearLayoutManager

android:nestedScrollingEnabled="false" is available only since API 21 so in other cases it needs to be set by code.