I have a recycler view inside nested scroll view. When there is too much data in recycler view, the scroll gets lagged. Is there any way to solve this issue other than taking the recycler view out of nested scroll view?
Asked
Active
Viewed 229 times
1 Answers
0
Use this recyclerView.setNestedScrollingEnabled(false)

Praveen
- 3,186
- 2
- 8
- 23
-
I already disabled nested scrolling. I changed from Glide to Picasso, the performance is good now. Thanks!!! – Kishor Morais Sep 05 '21 at 17:50