Пример #1
0
 /**
  * Method to download an image given an url
  *
  * @param url the image url to download
  * @param imageView the view where introduce the selected image
  */
 public void download(String url, ImageView imageView) {
   BitmapDownloaderTask task = new BitmapDownloaderTask(imageView);
   task.execute(url);
 }