Thursday, December 17, 2009

Using threads and ProgressDialog

This is a simple tutorial to show how to create a thread to do some work while displaying an indeterminate ProgressDialog. Click here to download the full source.

We'll calculate Pi to 800 digits while displaying the ProgressDialog. For the sake of this example I copied the "Pi" class from this site.

We start with a new Android project, only thing I needed to change was to give that TextView an id in main.xml so that I could update it in the Activity.

Because this Activity is so small I'll show you the whole thing and then discuss it at the end:

11.
public class ProgressDialogExample extends Activity implements Runnable {
12.

13.
private String pi_string;
14.
private TextView tv;
15.
private ProgressDialog pd;
16.

17.
@Override
18.
public void onCreate(Bundle icicle) {
19.
super.onCreate(icicle);
20.
setContentView(R.layout.main);
21.

22.
tv = (TextView) this.findViewById(R.id.main);
23.
tv.setText("Press any key to start calculation");
24.
}
25.

26.
@Override
27.
public boolean onKeyDown(int keyCode, KeyEvent event) {
28.

29.
pd = ProgressDialog.show(this, "Working..", "Calculating Pi", true,
30.
false);
31.

32.
Thread thread = new Thread(this);
33.
thread.start();
34.

35.
return super.onKeyDown(keyCode, event);
36.
}
37.

38.
public void run() {
39.
pi_string = Pi.computePi(800).toString();
40.
handler.sendEmptyMessage(0);
41.
}
42.

43.
private Handler handler = new Handler() {
44.
@Override
45.
public void handleMessage(Message msg) {
46.
pd.dismiss();
47.
tv.setText(pi_string);
48.

49.
}
50.
};
51.

52.
}

So we see that this Activity implements Runnable. This will allow us to create a run() function to create a thread.

In the onCreate() function on line 18 we find and initialize our TextView and set the text telling the user to press any key to start the computation.

When the user presses a key it will bring us to the onKeyDown() function on line 27. Here we create the ProgressDialog using the static ProgressDialog.show() function, and as a result the pd variable is initialized. We also create a new Thread using the current class as the Runnable object. When we run thread.start() a new thread will spawn and start executing the run() function.

In the run() function we calculate pi and save it to the String pi_string. Then we send an empty message to our Handler object on line 40.

Why use a Handler? We must use a Handler object because we cannot update most UI objects while in a separate thread. When we send a message to the Handler it will get saved into a queue and get executed by the UI thread as soon as possible.

When our Handler receives the message we can dismiss our ProgressDialog and update the TextView with the value of pi we calculated. It's that easy!

1 comment:

  1. nice bt from wr u imported Pi class
    Amar

    from JIS engineering college

    ReplyDelete