scrollview嵌套recyclerview显示不全现象
Posted ggband
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scrollview嵌套recyclerview显示不全现象相关的知识,希望对你有一定的参考价值。
只需在recyclerview的外层加入一个父布局就好了
<RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent"> <android.support.v7.widget.RecyclerView android:id="@+id/rv_lineView" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_marginTop="20dip" android:clipToPadding="false" tools:listitem="@layout/item_timeline" android:nestedScrollingEnabled="false"/> </RelativeLayout>
以上是关于scrollview嵌套recyclerview显示不全现象的主要内容,如果未能解决你的问题,请参考以下文章
scrollview嵌套上下拉控件嵌套recyclerview
嵌套的scrollview + recyclerview,奇怪的自动滚动行为[重复]
Android Scrollview嵌套RecyclerView导致滑动卡顿问题解决
解决ScrollView嵌套RecyclerView的显示及滑动问题