美文网首页
Android Scrollview嵌套recyclerview

Android Scrollview嵌套recyclerview

作者: hudafei | 来源:发表于2020-03-20 10:29 被阅读0次

    同样的布局,在别的布局中就可以显示。

    布局如下:

    <ScrollView>

    <RelativeLayout

            android:layout_width="match_parent"

            android:layout_height="match_parent">

            <android.support.v7.widget.RecyclerView

                android:id="@+id/me_recyclerview"

                android:layout_width="match_parent"

                android:layout_height="wrap_content"

                />

        </RelativeLayout>

    </ScrollView>

    其他只是布局显示不全,这个直接不显示,后来发现是因为布局管理器导致,用的NestStaggeredGridLayoutManager就不显示布局,换成了GridLayoutManager就显示。具体原因还不知道,先记录。

    相关文章

      网友评论

          本文标题:Android Scrollview嵌套recyclerview

          本文链接:https://www.haomeiwen.com/subject/yaidyhtx.html