requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS)

doesn't work for me, since it should be called before onCreate in the Activity, when I need to show it only when user pressed button in this Activity.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You're on the right track. You do want to use:

requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);

The trick is to toggle the display of the spinner via:

setProgressBarIndeterminateVisibility(boolean);

Pass true to show, false to hide. So in your Activity init or UI init then call it with false to hide it, then call it again with true to show it when your button click is fired.

link|improve this answer
Nice! Didn't know about these methods. – Matthew Willis Mar 23 '11 at 20:09
Thanks! Can it be called from ASyncTask? – LA_ Mar 23 '11 at 21:26
And, strange - but it doesn't work for me... Should it work on HTC? – LA_ Mar 23 '11 at 21:41
1  
Ahh, I should call setProgressBarIndeterminateVisibility(boolean); in onPreExecute/onPostExecute of AsyncTask. – LA_ Mar 25 '11 at 20:43
feedback

I believe you can still set the progress bar's visibility via PROGRESS_VISIBILITY_OFF and PROGRESS_VISIBILITY_ON after you've called setContentView.

You can in fact set FEATURE_INDETERMINATE_PROGRESS in onCreate, it just needs to be before setContentView is called.

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.