参考来源于: https://segmentfault.com/a/1190000011553735
网上大部分都是抄来抄去,还tm解决不了问题,解决这个问题,你需要下面两个操作:
1: 在RecyclerView外面套一层:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.RecyclerView
android:id="@+id/recycle_item"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="10dp"
android:overScrollMode="never"></android.support.v7.widget.RecyclerView>
</RelativeLayout>
2:经过上面的操作 RecyclerView可以全部展示了,但是此时滑动的时候 卡得一比,接着做这样的操作,在代码里加上如下:
RecyclerView
recyclerView.setHasFixedSize(true); recyclerView.setNestedScrollingEnabled(false);
问题,得以解决。