I know it is a very basic question. I have tried to find the numerous solution but I am not able to understand them.
What I want
upload image to the server and in return I am getting URL but the problem is while setting the image using this URL, the old image is set. This is happening because the glide is taking old cache and not updating the cache.
How to solve this.
Glide.clear(profilePic);
Glide.with(getApplicationContext())
.load(url)
.diskCacheStrategy(DiskCacheStrategy.ALL)
.skipMemoryCache(true)
.transform(new CircleTransform(MainProfile.this))
.into(profilePic);
currently, the pic is changed but when I click the back button and come back to this activity then it loads an old image. Loading the image from cache like that.
//setting up the profile pic
Glide.with(getApplicationContext())
.load(userProfilePicUrl)
.asBitmap()
.centerCrop()
.into(new BitmapImageViewTarget(profilePic) {
@Override
protected void setResource(Bitmap resource) {
RoundedBitmapDrawable circularBitmapDrawable =
RoundedBitmapDrawableFactory.create(MainProfile.this.getResources(), resource);
circularBitmapDrawable.setCircular(true);
profilePic.setImageDrawable(circularBitmapDrawable);
}
});
The problem is when I come back to this activity it shows old pic instead of new one.
Try this out
Replacing
DiskCacheStrategy.ALL
toDiskCacheStrategy.NONE
Maybe you can try this:
Try reading this link as a ref
However this solution also seems more provided.
Reference to which is similar question asked before, which you can find here.
Hope that helps somewhat.
Cheers
Glide has inbuilt function to invalidate cache.By using signature() function old cache can be invalidated.
RequestOptions provides type independent options to customize loads with Glide in the latest versions of Glide.
Make a RequestOptions Object and use it when we are loading the image.