Example #1
0
 @Override
 protected void onPreExecute() {
   super.onPreExecute();
   pDialog = new ProgressDialog(activity);
   pDialog.setMessage("Listing Clinic ...");
   pDialog.setIndeterminate(false);
   pDialog.setCancelable(false);
   pDialog.show();
   activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
 }