带有RecyclerView的Android BottomSheet

时间:2016-11-24 15:05:15

标签: android android-recyclerview bottom-sheet

我在其应用程序中添加了带有RecyclerView的BottomSheet,但我无法滚动RecyclerView,我无法找出问题所在。

这是我的BottomSheet:

   <!-- bottom sheet -->
<FrameLayout
   android:id="@+id/bottom_sheet"
   style="@style/Widget.Design.BottomSheet.Modal"
   android:layout_width="match_parent"
   android:layout_height="0dp"
   app:behavior_hideable="true"
   app:behavior_peekHeight="90dp"
   app:layout_behavior="@string/bottom_sheet_behavior">

    <!-- horizontal thumbnail -->
    <android.support.v7.widget.RecyclerView
       android:id="@+id/horizontal_thumbnail"
       android:layout_width="match_parent"
       android:layout_height="90dp"/>

    <!-- vertical thumbnail -->
    <android.support.v7.widget.RecyclerView
       android:id="@+id/vertical_thumbnail"
       android:layout_width="match_parent"
       android:layout_height="match_parent"
       android:visibility="gone"/>
</FrameLayout>

展开工作表时,垂直缩略图可见,折叠列表时水平显示。

2 个答案:

答案 0 :(得分:1)

您还可以将RecyclerView放在NestedScrollView中。

答案 1 :(得分:0)

解决了它。问题是我在BottomSheet中添加了两个RecyclerViews,第二个在这种情况下没有滚动。当我移除它时,我真的不需要第一个,我能够滚动另一个。