I have 3 AsyncTasks and 1 ProgressBar. I want when any of task executes, the progress bar is visible and when all of them finish, the progress bar is invisible.

In Java, there is ExecutorService::isTerminated to check if all runables finished but Android doesn't.

Update: 3 tasks execute at the same time.

Figure. enter image description here

link|improve this question

feedback

4 Answers

up vote 4 down vote accepted

Nice graphic. But i am afraid there is no build in mechanizm for this. You'll have to implement it by yourself. There are few solutions you could use -

  1. Keep a reference to all 3 task. When task finishes check if the other two tasks are finished too, if yes than close the progress dialog if no wait for some other task to finish and check again. Make sure you free the references when you're done.
  2. If you don't want to keep a reference store a counter. When task finishes increment the counter and check if it's equal to 3, if yes all tasks finished and you are done. If you implement this make sure to synchronized the access to the counter.
link|improve this answer
feedback

A simple workaround would be to use three boolean variables one each for each AsyncTask and then check them accordingly.

A better approach would be to create a separate class that extends AsynTask and defines a callback interface which is fired in onPostExecute.

link|improve this answer
feedback

Well as you do know when an AsyncTask ends (when onPostExecute gets called): one solution could be to create a method setProgressBarVisible() that keeps a counter and when first called sets visible, and a method setProgressBarInvisible() that decreases the counter and when zero sets the progress bar invisible.

link|improve this answer
feedback

:-? i think it's just a trick. you will return some message at onPostExecute of each Asyntask and compare it. (this message can contain a time, for example)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.