Dies ist eine alte Version des Dokuments!
ProgressDialog
android.app.ProgressDialog
The following example shows a simple ProgressDialog, as you need it at longer actions:
ProgressDialog progressDlg = ProgressDialog.show(this, "", "Load...", true, false); // Here, make something that lasts longer progressDlg.dismiss();