Android

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);
// Make something here that lasts longer
progressDlg.dismiss();