How can I cache images after they are downloaded from web?
|
And now the punchline: use the system cache.
Provides both memory and flash-rom cache, shared with the browser. grr. I wish somebody had told ME that before i wrote my own cache manager. |
|||||||||||||||||||||
|
|
Regarding the elegant See the comments at the top of (I'd post this in a comment, but I apparently don't have enough SO karma.) |
|||||||||||||||
|
|
Convert them into Bitmaps and then either store them in a Collection(HashMap,List etc.) or you can write them on the SDcard. When storing them in application space using the first approach, you might want to wrap them around a java.lang.ref.SoftReference specifically if their numbers is large (so that they are garbage collected during crisis). This could ensue a Reload though.
writing them on SDcard will not require a Reload; just a user-permission. |
|||||
|
|
To download an image and save to the memory card you can do it like this.
Don't forget to add the Internet permission to your manifest:
|
|||||||||||||||
|
|
I would consider using droidfu's image cache. It implements both an in-memory and disk-based image cache. You also get a WebImageView that takes advantage of the ImageCache library. Here is the ImageCache library code specifically: Here is the full description of droidfu and WebImageView: http://brainflush.wordpress.com/2009/11/23/droid-fu-part-2-webimageview-and-webgalleryadapter/ |
|||||||
|
|
I've tried SoftReferences, they are too aggressively reclaimed in android that I felt there was no point using them |
|||
|
As Thunder Rabbit suggested, ImageDownloader is the best one for the job. I also found a slight variation of the class at: http://theandroidcoder.com/utilities/android-image-download-and-caching/ The main difference between the two is that the ImageDownloader uses the Android caching system, and the modified one uses internal and external storage as caching, keeping the cached images indefinitely or until the user removes it manually. The author also mentions Android 2.1 compatibility. Regards, EZFrag |
|||||
|
|
This is a good catch by Joe. The code example above has two problems - one - the response object isn't an instance of Bitmap (when my URL references a jpg, like http:\website.com\image.jpg, its a org.apache.harmony.luni.internal.net.www.protocol.http.HttpURLConnectionImpl$LimitedInputStream). Second, as Joe points out, no caching occurs without a response cache being configured. Android developers are left to roll their own cache. Here's an example for doing so, but it only caches in memory, which really isn't the full solution. http://codebycoffee.com/2010/06/29/using-responsecache-in-an-android-app/ The URLConnection caching API is described here: http://download.oracle.com/javase/6/docs/technotes/guides/net/http-cache.html I still think this is an OK solution to go this route - but you still have to write a cache. Sounds like fun, but I'd rather write features. |
||||
|
|
|
There is a special entry on the official training section of Android about this: http://developer.android.com/training/displaying-bitmaps/cache-bitmap.html The section is quite new, it was not there when the question was asked. The suggested solution is to use a LruCache. That class was introduced on Honeycomb, but it is also included on the compatibility library. You can initialize a LruCache by setting the maximum number or entries and it will automatically sort them your you and clean them less used ones when you go over the limit. Other than that it is used as a normal Map. The sample code from the official page:
Previously SoftReferences were a good alternative, but not anymore, quoting from the official page:
|
|||
|
|
|
Google's libs-for-android has a nice libraries for managing image and file cache. |
|||||
|
|
|
Consider using Universal Image Loader library by Sergey Tarasevich. It comes with:
Universal Image Loader allows detailed cache management for downloaded images, with the following cache configurations:
A simple usage example:
This example uses the default |
||||
|
|
|
I had been wrestling with this for some time; the answers using SoftReferences would lose their data too quickly. The answers that suggest instantiating a RequestCache were too messy, plus I could never find a full example. But ImageDownloader.java works wonderfully for me. It uses a HashMap until the capacity is reached or until the purge timeout occurs, then things get moved to a SoftReference, thereby using the best of both worlds. |
|||
|
|
|
I suggest IGNITION this is even better than Droid fu https://github.com/kaeppler/ignition https://github.com/kaeppler/ignition/wiki/Sample-applications |
|||
|
|
|
Late answer, but I figured I should add a link to my site because I have written a tutorial how to make an image cache for android: http://squarewolf.nl/2010/11/android-image-cache/ So to all the people who stumble upon this question and haven't found a solution: hope you enjoy! =D |
|||
|
|
|
Even later answer, but I wrote an Android Image Manager that handles caching transparently (memory and disk). The code is on Github https://github.com/felipecsl/Android-ImageManager |
|||||
|
