Lines Matching refs:dialog
58 //dialog ids
198 public void onCancel(DialogInterface dialog) {
268 ProgressDialog dialog = new ProgressDialog(this);
271 // It would be more efficient to reuse this dialog by moving
276 dialog.setMessage(mNetworkSelectMsg);
277 dialog.setCancelable(false);
278 dialog.setIndeterminate(true);
281 dialog.setMessage(getResources().getString(R.string.register_automatically));
282 dialog.setCancelable(false);
283 dialog.setIndeterminate(true);
287 // reinstate the cancelablity of the dialog.
288 dialog.setMessage(getResources().getString(R.string.load_networks_progress));
289 dialog.setCancelable(true);
290 dialog.setOnCancelListener(this);
293 return dialog;
299 protected void onPrepareDialog(int id, Dialog dialog) {