I am using Glide in one of my projects to show images from files.
Below is my code of how I am showing the image:
Glide.with(DemoActivity.this)
.load(Uri.parse("file://" + imagePath))
.into(mImage);
The image at this location(imagePath
) keeps on changing. By default Glide cache the image it shows in the ImageView
. Because of this, the Glide was showing the first image from the cache for new images at that location.
If I change the image at location imagePath
with some other image having the same name then the Glide is showing the first image instead of the new one.
Two queries are:
Is it possible to always the image from File and not cache? This way problem will be solved.
Is it possible to clear the image from the cache before getting the newly replaced image? This will also solve the problem.