How to inform the app that an image that was already downloaded and cached, was updated/changed on the server and needs to be Re-downloaded?
I have a ListView on my app that downloads the images and caches them so they wont have to be loaded again and again.
The problem is that when I edit or change the image on the server, the image on the app stays the same, because it is cached. it uses the image URL.
In other words, the code checks whether that URL was already used to download that image, and if it does, he pulls it out of the cache and displays it. else - it downloads it.
How can I inform the app, that there is a new image?
I mean, is there any common way to do that in my situation?