Android: Image Download and Caching Upcoming Improvements
Hi there everyone,
I have received a lot of requests regarding the image caching class I made available in the beginning of the year. And the major issue for most of you was the memory management aspect of the class. So I decided to take the class and improve it memory management, especially when loading big images, or a lot of images.
Keep an eye out for the update
Android: Asynctask wait()
I had a couple of queries regarding the wait function and the AsyncTask class. More »
Android: Parsing HTML with JSoup
Here is an example of how to parse HTML using JSoup. It is extremely versatile, capable of parsing the most badly formed html. More »
Android: Extending AsyncTask
Android: Image Download and Caching
In one of my projects I used a ListView which displayed images from the web and I needed a solution that cached the downloaded images on a device’s external storage. I managed to find a class on the Android website which does exactly that. More »