删除回收视图滚动效果

我有两个 RecyclerView在我的 NavigationDrawer。都有蓝色的滚动效果。

如何在两个 RecyclerViews中消除这种效应?

我尝试改变: mRecyclerView.setHasFixedSize(true);false,但它删除滚动效果。(这个方法的效果是什么?)

Link to an image of the problem

73934 次浏览

把这个添加到你的布局中:

android:overScrollMode="never"

所以:

<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:overScrollMode="never"
android:background="#FFFFFF"
android:scrollbars="vertical" />

用爪哇语就可以

recyclerView.setOverScrollMode(View.OVER_SCROLL_NEVER)

或者在 Kotlin

recyclerView.overScrollMode = View.OVER_SCROLL_NEVER