Problem: How to load images from web/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