I'm implementing a news page in my app. I want the page to download any new images and store them on the phone.
My question is: how do I tell which images have been downloaded and which ones haven't?
I was thinking of saving the images as the yymmddhhss.png but that seems sloppy. I saw someone use a url.hashCode() implementation but I'm not sure what it does so I'm not sure if it'll work for my application.
I'd like the implementation to use built in function OR filename tricks. I'd rather not setup a DB or preference to store the name/date of the last downloaded image.