Remove RecyclerView scroll effects

后端 未结 2 1013
终归单人心
终归单人心 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:34

    And in Java you would do

    recyclerView.setOverScrollMode(View.OVER_SCROLL_NEVER)
    

    or in Kotlin

    recyclerView.overScrollMode = View.OVER_SCROLL_NEVER
    

提交回复
热议问题