I have a RecyclerView with some tiles and an ImageView to display some image from the network. To load the image I'm using Glide and the the good ol' loading method:
Glide.with(this)
.load(url)
.into(myImageView)
Despite being correctly loaded, images load in a random order. I can't figure out how to 'specify' the order of loading.
Thanks in advance!
Despite being correctly loaded, images load in random order.
From this statement my understanding is, all the images are correctly loading in respective ViewHolder but just the problem here is if there are 3 ViewHolders then you expect to load/display images from ViewHolder1, ViewHolder2, ViewHolder3 respectively but currently ViewHolder2 or ViewHolder3 might display image before ViewHolder1.
If my above understanding is correct then I want to add few points here: