Glide not loading real image and stuck with placeholder

Try to add .dontAnimate()
It caused by TransitionDrawable too and it seems so because after scroll there’s no animation because it’s cached.

The correct code is

Glide.with(view.getContext()).load(url).placeholder(R.drawable.default_profile).dontAnimate().into(view);

I hope it will be helpful for you.

Leave a Comment