Home | History | Annotate | Download | only in app

Lines Matching defs:DialogFragment

55  * <p>DialogFragment does various things to keep the fragment's lifecycle
61 * <p>DialogFragment needs to ensure that what is happening with the Fragment
66 * DialogFragment to your UI, as these keep track of how DialogFragment should
72 * <p>The simplest use of DialogFragment is as a floating container for the
83 * <p>This removes any currently shown dialog, creates a new DialogFragment
85 * transaction is popped, the current DialogFragment and its Dialog will be
87 * DialogFragment will take care of popping the transaction of the Dialog
113 * capture user input until it is dismissed. When it is dismissed, DialogFragment
119 * <p>A DialogFragment can still optionally be used as a normal fragment, if
140 public class DialogFragment extends Fragment
187 public DialogFragment() {
308 * Dialog.setCancelable(boolean)}, because DialogFragment needs to change
428 * <p><em>Note: DialogFragment own the {@link Dialog#setOnCancelListener
467 throw new IllegalStateException("DialogFragment can not be attached to a container view");
473 if (!mDialog.takeCancelAndDismissListeners("DialogFragment", this, this)) {
547 writer.print(prefix); writer.println("DialogFragment:");