Is it possible to change the size of the cache Picasso uses for images?
问题 I'm loading images from URLs (http://) with Picasso. Sometimes when i try to "preload" an image using Picasso's fetch() method, the image doesn't get cached. I guess it's because it's size is too big. Read the answer for this question, but setCache() doesn't seem to be recognized for me, i don't even find it in the Picasso documentation. Is there any way to change the cache size Picasso uses for bitmaps? 回答1: You can do: int maxSize = MAX_CACHE_SIZE; Picasso picasso = new Picasso.Builder