gpt4 book ai didi

android - 如何在 ScrollView 中滚动 RecyclerView

转载 作者:行者123 更新时间:2023-11-29 14:30:05 24 4
gpt4 key购买 nike

enter image description here

如何在scrollview中滚动所有RecyclerView上方

我必须在 ScrollView 中实现 RecyclerView,如下代码所示,但不能滚动 RecyclerView。

请回答

            <ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/horizontalScrollView"
android:layout_marginTop="10dp">

<RelativeLayout...

<android.support.v7.widget.RecyclerView
android:id="@+id/rvpouch"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:nestedScrollingEnabled="false"
android:layout_below="@+id/textView3">


</android.support.v7.widget.RecyclerView>

</RelativeLayout>

</ScrollView>

最佳答案

不要在 ScrollView 中使用 RecyclerView。使用 NestedScrollView 而不是 ScrollView

NestedScrollView is just like ScrollView, but it supports acting as both a nested scrolling parent and child on both new and old versions of Android. Nested scrolling is enabled by default.

例如:

<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:descendantFocusability="blocksDescendants">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

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

</android.support.v7.widget.RecyclerView>

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

</android.support.v7.widget.RecyclerView>

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

</android.support.v7.widget.RecyclerView>

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

使用属性 android:nestedScrollingEnabled="false" 实现平滑滚动。

关于android - 如何在 ScrollView 中滚动 RecyclerView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44878863/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com