Monday, May 30, 2011

Android Progress Dialog Example

In situations when you need to wait some operation it is good practice to notify user that operation is in progress.For this cases in Android present several classes which can help with this. One of them I am going to demonstrate.

In this tutorial, I will show you how to add a progress dialog to your Android application. A dialog is usually a small window or tab that appears before any activity in your application. It is intended to display alerts or information to the user. A progress dialog can be used to either show some processing activity to the user or to show the progress of some custom activity using the progress bar.

To create a Progress Dialog, we can make use of the ProgressDialog class which is an extension of the AlertDialog class. It can be used to display a standard progress dialog with a spinning wheel and some custom text. You can display your Progress Dialog using a simple show () call on your dialog object.

Here's the syntax to create a standard Progress dialog:
ProgressDialog MyDialog = ProgressDialog.show( MyActivity.this, "TITLE " , " Loading. Please wait ... ", true);
It has four parameters:
1. The application context
2. The title of the Dialog
3. The Dialog Text or Message which is displayed in the dialog
4. A boolean value indicating whether the progress is indeterminate

and to disapper the ProgressDialog you have to add dismiss() like this:
MyDialog.dismiss();

Now I will show how to use ProgressDialog class for showing progress dialog. I will show how to create progress dialog with title and without title.

With TItle: ProgressDialog.show(Main.this, "In progress", "Loading");


What if I you want to hide the title? just put empty string as title parameter.
ProgressDialog.show(Main.this, "", "Loading...");

Example:

import android.app.ProgressDialog;
//in the class...
private ProgressDialog progressBar;

//when you want the dialog to show the first time.
progressBar = ProgressDialog.show(Main.this, "Disconnecting", "Please wait for few secs...");

//when you want the progressbar to disappear
if (progressBar.isShowing()) {
progressBar.dismiss();
}

2 comments:

  1. This comment has been removed by the author.

    ReplyDelete

  2. Khiếu Thiên Hổ nói.

    - Cái gì, nhị thúc đã rơi vào trong tay của bọn chúng?

    Sắc mặt của Nhạc Thành đại biến, hàn khí quanh người của hắn bỗng trở nên tràn ngập.

    - Thành nhi, nhị thúc của con đã rơi vào trong tay của Viễn Cổ Hổ Tộc, còn Phỉ Nhi nữa, nếu như không nhờ Phỉ Nhi thì ta cũng bị người kia bắt đi, con phải nghĩ biện pháp cứu nhị thúc và Phỉ Nhi.

    Nhạc Tử Sơn nói với Nhạc Thành, ông lúc này cũng chỉ đặt hi vọng lên trên người của Nhạc Thành.

    - Yên tâm đi phụ thân, con nhất định sẽ cứu họ ra.

    Nhạc Thành an ủi phụ thân.
    dongtam
    mu private
    tim phong tro
    http://nhatroso.com/
    nhac san cuc manh
    tổng đài tư vấn luật
    http://dichvu.tuvanphapluattructuyen.com/
    văn phòng luật
    tổng đài tư vấn pháp luật
    thành lập công ty
    http://we-cooking.com/
    chém gió
    trung tâm ngoại ngữ
    - Nhạc Thành, chúng ta phải nghĩ cách cứu phụ thân của ta, ta muốn đi cùng với ngươi.

    Nhạc Kiều lúc này cấp tốc nói với Nhạc Thành, trong lòng nàng vẫn lo lắng không thôi tới phụ thân của mình.

    - Kiều tỷ, không cần phải lo lắng, đệ nhất định sẽ cứu Phong thúc ra.

    ReplyDelete

How TOPT Works: Generating OTPs Without Internet Connection

Introduction Have you ever wondered how authentication apps like RSA Authenticator generate One-Time Passwords (OTPs) without requiring an i...