简体   繁体   中英

Failed to load image using glide

In my application, I was trying to get the thumbnail of a book from google play books API and display it in an image view but somehow what I did is not working.

Glide.with(holder.thumb.getContext())
                    .load(curThumb)
                    .into(holder.thumb);

when I used the above method with a local image it worked also thumbnail URL is correct

I tried using Glide v4.0.0-RC1 use RequestOptions to add the placeholder, error image and other options make sure URL(image_url) starts with https, not with HTTP

   RequestOptions options = new RequestOptions()
                        .centerCrop()
                        .placeholder(R.mipmap.ic_launcher_round)
                        .error(R.drawable.your_error_image);

RequestOptions to add placeholder, error image and to customize image

 Glide.with(this).load(image_url).apply(options).into(imageView);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM