Basically, I'm loading images from url using Glide image loader. Most of the images are loading slowly(nearly a minute) when I tested with Redmi Note 7 pro, Vivo devices but the same images are loaded within 3 seconds in Samsung M30 devices.All the images sizes are less than 3 mb only. I have also tried changing the image loader to Picasso but still the same result.

Any suggestions would be really helpful. Thanks in advance.

Glide.with(getActivity()).load(profileDp).into(new SimpleTarget<GlideDrawable>() {
@Override
public void onResourceReady(GlideDrawable resource, GlideAnimation<? super GlideDrawable> glideAnimation) {
ivProfilepic.setImageDrawable(resource);
}
});
1

There are 1 best solutions below

4
On

which version of Glide you are using??

You can use glide to load images without using onResourceReady method if you are just loading image on an image view.

like this.

Glide.with(getActivity())
.load(profileDp)
.into(ivProfilePic);