Home | History | Annotate | Download | only in browse

Lines Matching refs:mDialog

37     private ProgressDialog mDialog;
68 mDialog = new ProgressDialog(getActivity());
69 mDialog.setTitle(R.string.fetching_attachment);
70 mDialog.setMessage(mAttachment.getName());
71 mDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
72 mDialog.setIndeterminate(true);
73 mDialog.setMax(mAttachment.size);
74 mDialog.setProgressNumberFormat(null);
76 return mDialog;
81 mDialog = null;
87 mDialog = null;
102 if (mDialog != null) {
103 mDialog.setProgress(progress);
108 return mDialog != null && mDialog.isIndeterminate();
112 if (mDialog != null) {
113 mDialog.setIndeterminate(indeterminate);