0

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?

1 Answers1

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