Skip to content

Instantly share code, notes, and snippets.

@a-v-ebrahimi
Created April 25, 2012 06:08
Show Gist options
  • Save a-v-ebrahimi/2487014 to your computer and use it in GitHub Desktop.
Save a-v-ebrahimi/2487014 to your computer and use it in GitHub Desktop.
Android: show progress dialog
private ProgressDialog myProgressDialog;
...
myProgressDialog = ProgressDialog.show(actRSS.this,
"Please wait...", "Loading Data...", true);
...
myProgressDialog.dismiss();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment