Android Library that makes it easy to download images in Android with a simple and straight forward api.
========= For a complete documentation head to http://bmutinda.github.io/VutaImage/
Example1
final String imageUrl = "http://myexample.com/img/sample1.png";
VutaImage.download( imageUrl, new ImageDownloadCallback() {
@Override
public void progress(int elapsed, int totalSize) {
Log.e( TAG , "Image download progress = "+elapsed+" out of "+totalSize );
}
@Override
public void done(boolean success) {
Log.e( TAG , "Image download done with success = "+success );
}
});