For testing I want to see how many kB / MB are currently in use in my LRU Cache. I have the total size set to 4096.
Is there a function like:
public LruCache<String, Bitmap> myCache;
...
...
println(myCache.getUsedAmount());
or
println(myCache.getAvailabeSpace());