170

I have two RecyclerView inside my NavigationDrawer. Both have the blue scroll effects.

How can I remove this effect in both RecyclerViews?

I tried changing: mRecyclerView.setHasFixedSize(true); to false, but it remove scroll effects. (What is the effect of this method?)

Link to an image of the problem

Abhimanyu
  • 11,351
  • 7
  • 51
  • 121
JavierSegoviaCordoba
  • 6,531
  • 9
  • 37
  • 51

2 Answers2

472

Add this to your layout:

android:overScrollMode="never"

So:

<android.support.v7.widget.RecyclerView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:overScrollMode="never"
    android:background="#FFFFFF"
    android:scrollbars="vertical" />
mmlooloo
  • 18,937
  • 5
  • 45
  • 64
27

And in Java you would do

recyclerView.setOverScrollMode(View.OVER_SCROLL_NEVER)

or in Kotlin

recyclerView.overScrollMode = View.OVER_SCROLL_NEVER
Algar
  • 5,734
  • 3
  • 34
  • 51