scrollview嵌套recyclerview卡顿现象
Posted ggband
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scrollview嵌套recyclerview卡顿现象相关的知识,希望对你有一定的参考价值。
方式一xml: android:nestedScrollingEnabled="false"
<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"/>
方式二java:
rv_lineView.setNestedScrollingEnabled(false);
以上是关于scrollview嵌套recyclerview卡顿现象的主要内容,如果未能解决你的问题,请参考以下文章
ScrollView嵌套Recyclerview显示不全问题
scrollview嵌套上下拉控件嵌套recyclerview
嵌套的scrollview + recyclerview,奇怪的自动滚动行为[重复]
Android Scrollview嵌套RecyclerView导致滑动卡顿问题解决