我在Android应用程序中工作,从Amazon S3加载图像。 图像URL随令牌和到期密钥随机更改。出于这个原因,我无法缓存图像Glide。
有任何方法可以将Glide缓存键设置为任何静态ID(如图像ID)而不是url。
我附上了我的代码段以从AWS
加载图片Glide.with(remoteGalleryAct).load(photoFinalImageURL)
.signature(new StringSignature(getImageUrl(photoFinalImageURL)))// remove AWS keys
.error(defaultNoImageDrawable)
.placeholder(defaultNoImageDrawable)
.dontAnimate()
.diskCacheStrategy(DiskCacheStrategy.SOURCE)
.into(new ImageViewTarget<GlideDrawable>(photoHolder.photo) {
@Override
protected void setResource(GlideDrawable resource) {
}
@Override
public void onResourceReady(final GlideDrawable resource, GlideAnimation<? super GlideDrawable> glideAnimation) {
//super.onResourceReady(resource, glideAnimation);
view.setImageDrawable(resource);
}
});
请建议我在Glide中有任何方法可以实现。
答案 0 :(得分:2)
覆盖GlideUrl类的getCacheKey()方法。此方法设置用于缓存图像的键。
以下是如何操作:
//Create a custom class and override the method to remove authentication header from the S3 image url
public class GlideUrlCustomCacheKey extends GlideUrl {
public GlideUrlCustomCacheKey(String url) {
super(url);
}
public GlideUrlCustomCacheKey(String url, Headers headers) {
super(url, headers);
}
public GlideUrlCustomCacheKey(URL url) {
super(url);
}
public GlideUrlCustomCacheKey(URL url, Headers headers) {
super(url, headers);
}
@Override
public String getCacheKey() {
String url = toStringUrl();
if (url.contains("?")) {
return url.substring(0, url.lastIndexOf("?"));
} else {
return url;
}
}
}
使用从此类获取的URL设置imageView:
Glide.with(context).load(new GlideUrlCustomCacheKey(buzzUrl)).into(imageView);