Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.01 KB

README.md

File metadata and controls

30 lines (22 loc) · 1.01 KB

VutaImage

Join the chat at https://gitter.im/mutindaz/VutaImage

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 );
   }
});

Bitdeli Badge