Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know that the following code should show and hide a tiny circular progress bar with the following code in Android:

requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
setProgressBarIndeterminateVisibility(true);
setProgressBarIndeterminateVisibility(false);

The problem is that I am using a TabHost and I need to be able to do this from one of the "child" activities. Is there any way I can go about doing this?

I found this question on the intarwebs but as you can see, it went unanswered.

share|improve this question

2 Answers

up vote 25 down vote accepted

And I found the answer. In your parent activity, before you do anything, you need to do the requestWindowFeature call, and then in your child activity you call getParent().setProgressBarIndeterminateVisibility(true/false);

share|improve this answer
Thanks -- this is a really useful and unobtrusive way to show the usre that something is happening. – hwrdprkns Jul 10 '10 at 2:23
Thank you, my hero :) – droidgren Sep 1 '10 at 21:20

Just for completeness:

If the task is running in a different thread other than Main ui thread, you can do:

    this.runOnUiThread(new Runnable() {
        public void run() {
            getParent().setProgressBarIndeterminateVisibility(mToggleIndeterminate);
        }
    });
share|improve this answer
1  
Good point! This is a subtlety that should not be overlooked. – Scott Biggs Jul 10 '12 at 17:57

protected by Will Sep 2 '10 at 10:17

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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