I need to cache HTTP responses and based on this blog post that functionality is built into ICS. However, I need to support version 1.6 and higher, so I would like to see if there are libraries ready for use before looking at the need to back up ICS functions.
Update:
Here's a link to the HttpResponseCache , which only supports java.net.HttpURLConnection .
Second update:
After some research, it looks like Apache HttpClient supports caching with the caveat that the default backend (in memory) is probably not a good idea for Android applications with limited memory. Ehcache might be a good option depending on Android support.
Abdullah jibaly
source share