Remove RecyclerView scroll effects

后端 未结 2 1001
终归单人心
终归单人心 2020-12-12 13:04

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

How can I remove this effect in both RecyclerV

相关标签:
2条回答
  • 2020-12-12 13:27

    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" />
    
    0 讨论(0)
  • 2020-12-12 13:34

    And in Java you would do

    recyclerView.setOverScrollMode(View.OVER_SCROLL_NEVER)
    

    or in Kotlin

    recyclerView.overScrollMode = View.OVER_SCROLL_NEVER
    
    0 讨论(0)
提交回复
热议问题