I wanted to display news items as cardviews in a recyclerview. however, display is getting stuttered whenever i try scrolling fast through the list. How can i enable a smoother scrolling?
Asked
Active
Viewed 472 times
0
-
Reffer to this http://stackoverflow.com/questions/27798212/how-to-add-a-fast-scroller-to-the-recyclerview – Nooruddin Lakhani Sep 09 '15 at 08:31
-
I think that there are many inflating in adapter, try to move inflating lines out of the getview – Patrizio Sep 09 '15 at 09:05
1 Answers
0
I think your UIThread is blocked by running complicated task.
So task like network call,image fetching,saving etc should be done in separate task..
Can you show your codes..

Arjun Gurung
- 431
- 3
- 17
-
I use Volley for all the above mentioned tasks. It scrolls perfectly fine when a list view is used. Recyclerview is the one which is giving me problems – Paranoid_Android Sep 10 '15 at 06:00