Android – Loading remote images



Problem: How do i load images from web OR Loading of remote images.
Description:

This tutorial is going to be a demo for loading images resides at a remote location. For this tutorial, i have implemented AsyncTask to show prorgress bar until the whole image gets loaded fully.

Solution:

FYI, i have made progress bar visible inside the onPreExecute() method. And performs the image loading operations inside the doInBackground() method. Once this operation is done, we will make progress bar invisible and make imageview visible with that loaded image inside the onPostExecute() method.

Download this example from here: https://github.com/PareshMayani/Android-LodeWebImage

About Paresh Mayani

I'm Paresh Mayani, a passionate mobile application developer from India. Having been involved in android app development since 2010. By passion, I am Head/Organizer of Google Developers Group (GDG), Ahmedabad
  • mikep

    thanks, this helps a lot. I notice android is using AysncTask, to load data from any type of HTTP request now. Im new to android. I am moving from desktop to mobile development, and I will continue my studies with your up to date information.

    • http://www.technotalkative.com/ Paresh Mayani

      Welcome!!