can i keep progress dialog anywhere in activity?? if possible then how can i do it???
+2
A:
A Progress Dialog will appear above your activity but you can use the ProgressBar widget to show the progress indicator somewhere in your activity.
Al
2010-09-26 16:23:53
A:
You can use
// Request progress bar
requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
setProgressBarIndeterminateVisibility(true);
to show an undeterminate progress spinner in the title bar.
pjv
2010-09-26 17:08:12