Home | History | Annotate | Download | only in browse

Lines Matching defs:dialog

139      * Displays a loading dialog to be used for downloading attachments.
150 // Create and show the dialog.
157 * Update progress-related views. Will also trigger a view intent if a progress dialog was
167 final AttachmentProgressDialogFragment dialog = (AttachmentProgressDialogFragment)
169 if (dialog != null && dialog.isShowingDialogForAttachment(mAttachment)) {
170 dialog.setProgress(mAttachment.downloadedSize);
174 final boolean indeterminate = !showProgress && dialog.isIndeterminate();
175 dialog.setIndeterminate(indeterminate);
181 dialog.dismiss();
198 final Fragment dialog = mFragmentManager.findFragmentByTag(PROGRESS_FRAGMENT_TAG);
199 return dialog != null && dialog.isVisible();