How to create boot dialogs in Android?

Are these dark revolving progress dialogs in Amazon and Engadget apps standard on Android?

+63
android progress-bar dialog
Mar 26 '10 at 18:14
source share
2 answers

This is a ProgressDialog, with setIndeterminate (true).

From http://developer.android.com/guide/topics/ui/dialogs.html#ProgressDialog

ProgressDialog dialog = ProgressDialog.show(MyActivity.this, "", "Loading. Please wait...", true); 

The indefinite progress bar does not actually show the panel; it shows circular activity. I'm sure you know what I mean :)

+170
Mar 26 '10 at 18:22
source share
— -

Today the situation has changed a bit.

Now we avoid using the ProgressDialog to display rotation speed:

enter image description here

If you want to turn the application on, you should use activity indicators:

http://developer.android.com/design/building-blocks/progress.html#activity

+19
Mar 02 '15 at 13:10
source share



All Articles