Saturday, January 3, 2015

Progress Dialog in Android

show progress dialog in android:

ProgressDialog pDialog; //initialize
pDialog = new ProgressDialog(context); //  pass context or activity.this
pDialog.setMessage(“Please wait…”);// set Message
pDialog.show(); // showing
pDialog.dismiss(); // dismiss

No comments :

Post a Comment