Glide not loading real image and stuck with placeholder

后端 未结 11 765
长情又很酷
长情又很酷 2021-02-02 05:59

I have a pretty basic load image from server line code:

Glide.with(view.getContext()).load(url).placeholder(R.drawable.default_profile).into(view);
11条回答
  •  后悔当初
    2021-02-02 06:19

    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.

提交回复
热议问题