我想知道是否可以使用 RecyclerView

在此之前,我在 ScrollView 中使用了固定高度的RecyclerView,但这一次我不知道商品的高度。

提示:在问这个问题之前,我先阅读了栈问题的所有问题和解决方案。

更新:
一些解决方案显示了如何自行滚动 RecyclerView ,但我想展示它的展开状态。

最佳答案

如果只想滚动,则可以使用 NestedScrollView 而不是 ScrollView ,因此可以使用以下命令修改代码:

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

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

            //design your content here with RecyclerView

    </LinearLayout>

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

07-24 09:47
查看更多