I'm using picasso to load images for my app. None are particularly large, but its only ever caching to memory so I'm running into out of memory errors on image heavy pages. Is there something I need to set manually in either picasso or the emulator to enable disk caching?
Picasso never caches to disk on emulator
2.9k Views Asked by Igd At
2
There are 2 best solutions below
0

From:
How to implement my own disk cache with picasso library - Android?
//this code from https://developer.android.com/reference/android/net/http/HttpResponseCache.html
try {
File httpCacheDir = new File(context.getCacheDir(), "http");
long httpCacheSize = 10 * 1024 * 1024; // 10 MiB
HttpResponseCache.install(httpCacheDir, httpCacheSize);
}catch (IOException e) {
Log.i(TAG, "HTTP response cache installation failed:" + e);
}
And enable debugging to check the cache is working Picasso.with(getContext()).setDebugging(true);
Have you provided a custom Downloader into Picasso? There are a few things you should make sure of:
Here is an example implementation for writing the images to the cache directory on the SD card:
I haven't tested this, but there also exists the possibility that the server is returning an HTTP header instructing OkHttp to never cache. For testing, I'd suggest:
setDebugging(true)
; you should see a yellow marker when the image is reloaded from disk.