美文网首页
ScrollView 嵌套 RecyclerView 时 Rec

ScrollView 嵌套 RecyclerView 时 Rec

作者: OyeAndroid | 来源:发表于2018-11-29 16:08 被阅读0次

解决方案:在RecyclerView 外面套上一层RelativeLayout即可.

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fillViewport="true"
    android:scrollbars="none">
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
            <!--外面必须加上RelativeLayout  否则wrap_content无效-->
            <android.support.v7.widget.RecyclerView
                android:id="@+id/rv_exception"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:scrollbars="none"/>
        </RelativeLayout>
 </ScrollView>    

还有网上说了一大堆解决方案,全都尝试了一下没有用,还是这个好用!

相关文章

网友评论

      本文标题:ScrollView 嵌套 RecyclerView 时 Rec

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