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:
- private TextView tv;
- private ProgressDialog pd;
- @Override
- public void onCreate(Bundle icicle) {
- super.onCreate(icicle);
- setContentView(R.layout.main);
- tv = (TextView) this.findViewById(R.id.main);
- tv.setText("Press any key to start calculation");
- }
- @Override
- pd = ProgressDialog.show(this, "Working..", "Calculating Pi", true,
- false);
- thread.start();
- return super.onKeyDown(keyCode, event);
- }
- public void run() {
- pi_string = Pi.computePi(800).toString();
- handler.sendEmptyMessage(0);
- }
- private Handler handler = new Handler() {
- @Override
- public void handleMessage(Message msg) {
- pd.dismiss();
- tv.setText(pi_string);
- }
- };
- }
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!
New tutorials from Helloandroid
Recent Apps
Android on Twitter
-
@StephanieNich10 (Stephanie Nichols)#android I laughed so hard at ochocinco 's avi. Hahahaha http://t.co/MPuhhi3m
29 weeks 5 days ago -
@CarlaAtkins8 (Carla Atkins)#android Omg! This is actually f'n interesting http://t.co/JodMOehr
29 weeks 5 days ago -
@MarianMcleod12 (Marian Mcleod)#android Precisely what song is? http://t.co/YmJXU0rB
29 weeks 5 days ago -
@JoBeach15 (Jo Beach)#android haha this made me laugh, i love ted:-) http://t.co/gtcWQ79C
29 weeks 5 days ago -
@aochart3 (青ちゃ)Start playing Paradise Island on Android http://t.co/DEID0Ao5 #Android #Androidgames #Gameinsight http://t.co/e1bifSeL
29 weeks 5 days ago
Poll
Useful resources
Android Development Projects
- App for a travel site by helenportugal
- Drivers Helper by jiffycabtaxi
- Create the Functionality Layout for an App by bnelson1980
- QA an Android game by geolinxllc
- Screen capture app without rooting by AndroidAll
- Android UI done for app by ricker1234
- Groupon App for Android and iOS _ extra by drorale
- We need a game similar to temple run. by coolseefangang
- Comic Reader with in-app purchase by dcyric
- We need a game similar to Call of Duty,FRUIT NINJA, MINECRAFT,CALL OF DUTY by coolseefangang



