mcfly soft
mcfly soft

Reputation: 11645

How To Clear Androids LRUCache

In the API of Google Developer there is a trimToSize() Method, that I can't find / use. How do I clear or reduze the size of my LRU Cache ?

Upvotes: 3

Views: 6689

Answers (1)

Triode
Triode

Reputation: 11357

public final void evictAll ()

Added in API level 12

Clear the cache, calling entryRemoved(boolean, K, V, V) on each removed entry.

Use this method.

Upvotes: 10

Related Questions