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.
doesn't work for me, since it should be called before
| |||
|
feedback
|
|
You're on the right track. You do want to use:
The trick is to toggle the display of the spinner via:
Pass | |||||||||||
feedback
|
|
I believe you can still set the progress bar's visibility via PROGRESS_VISIBILITY_OFF and PROGRESS_VISIBILITY_ON after you've called You can in fact set FEATURE_INDETERMINATE_PROGRESS in | |||
|
feedback
|