Skip to content

Instantly share code, notes, and snippets.

@robUx4
Created November 15, 2013 09:17
Show Gist options
  • Save robUx4/7481503 to your computer and use it in GitHub Desktop.
Save robUx4/7481503 to your computer and use it in GitHub Desktop.
All this time the huge memory leak was under my eyes #DOH #LruCacheFail
@Override
protected void entryRemoved(boolean evicted, String key, Bitmap oldValue, Bitmap newValue) {
super.entryRemoved(evicted, key, oldValue, newValue);
oldValue.recycle();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment