Adding a BitmapResource to the cache
suggest changeTo add a resource to the cache you must provide a key and the resource. First make sure that the value is not in the cache already
public void addResourceToMemoryCache(String key, Bitmap resource) { if (memoryCache.get(key) == null) memoryCache.put(key, resource); }
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents