As you know, when using a ProgressDialog a “popup”/dialog appears in which a circle/wheel shows the progress.
I am interested in drawing this wheel out from the dialog box, and only displaying this wheel, still indicating progress.
Main reason to want this, is the fact that I have some sort of “intro screen” which will show a logo and this progress wheel just below, which indicates that the application is loading various content.
This is (or could be) the wheel in question:

It wouldn’t hurt if the wheel could be smaller than it appears in a regular ProgressDialog.
(I’m using AsyncTask to load the content while this wheel is displayed.)
Any suggestions?
You can use the pre-defined style Android provides for an indeterminate
ProgressBar, like this:If you want it to be smaller, use the
progressBarStyleSmallstyle instead.From here you can set the visibility of the
ProgressBarto make it appear/disappear whenever you want.