I would like to integrate this caching mechanism in my app: Using DiskLruCache in android 4.0 does not provide for openCache method
Now, when I have the bitmap, which key shall I use? Or better: How can I generate a key?
It would be good if I could generate the key from the bitmap itself so that I can later call contains(String key)
to check whether the bitmap is already in the cache.
So what can I do?