gpt4 book ai didi

java - 使用 glide 加载图像失败

转载 作者:行者123 更新时间:2023-12-01 16:41:27 26 4
gpt4 key购买 nike

在我的应用程序中,我试图从 google play books API 获取一本书的缩略图并将其显示在 ImageView 中,但不知何故我所做的不起作用。

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

当我对本地镜像使用上述方法时,它也有效,缩略图 URL 也是正确的

最佳答案

我尝试使用 Glide v4.0.0-RC1 使用 RequestOptions 添加占位符、错误图像和其他选项,确保 URL(image_url) 以 https 开头,而不是 HTTP

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

添加占位符、错误图像和自定义图像的请求选项

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

关于java - 使用 glide 加载图像失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61854429/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com