我想在ScrollView中显示两个不同的列表。 我无法显示包含所有项目的两个完整列表。
我不需要: 将我的屏幕划分为两个包含可滚动列表的部分。
我需要什么: 一个滚动视图,带有两个回收视图,显示所有项目。
我现在拥有的:
<!-- ScrollView for the lists -->
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:orientation="vertical">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView1"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/txtTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Title" />
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView2"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</ScrollView>
答案 0 :(得分:2)
制作单一的Recyclerview并通过良好的适配器实现,您可以实现您想要的目标。 (单个适配器中的多个视图类型)
使用NestedScrollView和两个带有嵌套滚动功能的recyclerviews会呈现适配器中的所有项目,因此没有视图回收,并且取决于列表的长度,视图的复杂程度,内存相当不足很快。
答案 1 :(得分:1)
你应该肯定看一下NestedScrollView
NestedScrollView就像ScrollView,但它支持表现为 新旧版本上的嵌套滚动父级和子级 Android版默认情况下启用嵌套滚动。
https://developer.android.com/reference/android/support/v4/widget/NestedScrollView.html