I am currently doing the following:
I have a RecyclerView
to display in a fragment.I load the data along with the images from the server. I am using Ion
library to load the server data and the images.I have googled and found out that Volley excutes asynchronously
. I refered here. I have a doubt:
- Ion/Volley runs asynchronously. So does that mean they don't run on the main UI thread? Or do they run asyncronously on seperate thread?
- Someone told me that my recyclerview was jerky because I was loading data on the main thread using Ion.I have read that using Picasso to load images will prevent the jerky effect. So can any one clear me on this too?