Glide not loading real image and stuck with placeholder

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

    Check if you have added Internet permission in the manifest:

    
    

    Glide does not fire exception if there is no Internet connectivity.

提交回复
热议问题