Android Help With Adding A Progress Dialog While Image Loading?
I have been following a tutorial that remotely downloads an image to an imageview, but i'm not sure how to add a progress dialog (image or something) to show the user that image is
Solution 1:
You should look at this : asynctask is the way to go.
Android : Loading an image from the Web with Asynctask
Regards, Stéphane
Solution 2:
You need to look at ProgressBar class and basically use that while the image is loading. Alternatively you could put default image while the image is being downloaded.
To put the progress bar in your code, the easiest basically just flip their visibility in the layout.
- In your layout, you have two things. One placeholder for ProgressBar and the other is for the image
- The progressbar is set to VISIBLE initially and the image to GONE
- After you execute the AsyncTask (see below), you need to flip the visibility. Basically change the progressBar to GONE and the image to VISIBLE
Here is what you should try to do. Check the NOTE and TODO comment in the code. Note: I just modified your code, but haven't run it, but this should be enough to illustrate the idea.
Some key points:
- Long running task that might block UI Thread should get executed in AsyncTask. In your case, this would be downloading the image
- Post execution that needs to be handled in UI Thread should be handle in postExecute()
- Doing e.printStacktrace() during catching Exception is not a good practice. Without appropriate handles, this exception is not being handled correctly and might cause bugs in the future. In addition, during production, this information doesn't help you at all when bugs occur on the client's side since it is merely printing out in the console
View.OnClickListenergetImgListener=newView.OnClickListener()
{
@OverridepublicvoidonClick(View view) {
// NOTE: here you need to show the progress bar, you could utilize ProgressBar class from Android// TODO: Show progress barAsyncTaskasyncTask=newAsyncTask() {
@Overridepublic Bitmap doInBackground(Void... params) {
inti=r.nextInt(114);
// NOTE: move image download to async taskreturn downloadFile(imageUrl+"image-"+i+".jpg");
}
@OverridepublicvoidonPostExecute(Bitmap result) {
// TODO: hide the progress bar here // and flip the image to VISIBLE as noted aboveif(result != null) {
imView.setImageBitmap(result);
} else {
// NOTE 3: handle image null here, maybe by showing default image
}
}
};
// NOTE: execute in the background so you don't block the thread
asyncTask.execute();
}
};
// Change the return type to Bitmap so we could use it in AsyncTask
Bitmap downloadFile(String fileUrl){
URLmyFileUrl=null;
try {
myFileUrl= newURL(fileUrl);
} catch (MalformedURLException e) {
// NOTE: You should not have e.printStacktrace() here. In fact// printStacktrace is a bad practice as it doesn't really do anything// TODO Auto-generated catch block
e.printStackTrace();
}
try {
HttpURLConnection conn= (HttpURLConnection)myFileUrl.openConnection();
conn.setDoInput(true);
conn.connect();
intlength= conn.getContentLength();
InputStreamis= conn.getInputStream();
BitmapbmImg= BitmapFactory.decodeStream(is);
// return image this to the main Threadreturn bmImg;
} catch (IOException e) {
returnnull;
}
}
Post a Comment for "Android Help With Adding A Progress Dialog While Image Loading?"