Glide not loading real image and stuck with placeholder

后端 未结 11 752
长情又很酷
长情又很酷 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:31

    If someone comes across this in the future you may need to add

    
    

    Unsure of the exact reason for this change, nonetheless my code didn't work without that permission, and now does with it.

提交回复
热议问题