/frameworks/base/docs/html/guide/topics/ui/controls/ |
D | pickers.jd | 11 <li><a href="#TimePickerFragment">Extending DialogFragment for a time picker</a></li> 17 <li><a href="#DatePickerFragment">Extending DialogFragment for a date picker</a></li> 26 <li>{@link android.support.v4.app.DialogFragment}</li> 42 <p>We recommend that you use {@link android.support.v4.app.DialogFragment} to host each time or date 43 picker. The {@link android.support.v4.app.DialogFragment} manages the dialog lifecycle for you and 47 <p>Although {@link android.app.DialogFragment} was first added to the platform in Android 3.0 (API 49 1.6—you can use the {@link android.support.v4.app.DialogFragment} class that's available in 55 library</a> APIs for {@link android.support.v4.app.DialogFragment}. If your app's <a 57 higher, you can instead use the platform version of {@link android.app.DialogFragment}.</p> 64 android.support.v4.app.DialogFragment}, you need to define a fragment class that extends {@link [all …]
|
/frameworks/base/docs/html/guide/topics/ui/ |
D | dialogs.jd | 12 <li><a href="#DialogFragment">Creating a Dialog Fragment</a></li> 32 <li>{@link android.app.DialogFragment}</li> 78 use a {@link android.support.v4.app.DialogFragment} as a container for your dialog. 79 The {@link android.support.v4.app.DialogFragment} class provides all the controls you 83 <p>Using {@link android.support.v4.app.DialogFragment} to manage the dialog 86 android.support.v4.app.DialogFragment} class also allows you to reuse the dialog's UI as an 92 android.support.v4.app.DialogFragment} in combination with an {@link android.app.AlertDialog} 97 Because the {@link android.app.DialogFragment} class was originally added with 99 android.support.v4.app.DialogFragment} class that's provided with the <a 101 to your app, you can use {@link android.support.v4.app.DialogFragment} and a variety of other [all …]
|
/frameworks/support/v7/mediarouter/src/android/support/v7/app/ |
D | MediaRouteControllerDialogFragment.java | 22 import android.support.v4.app.DialogFragment; 31 public class MediaRouteControllerDialogFragment extends DialogFragment {
|
D | MediaRouteChooserDialogFragment.java | 22 import android.support.v4.app.DialogFragment; 32 public class MediaRouteChooserDialogFragment extends DialogFragment {
|
/frameworks/base/core/java/com/android/internal/app/ |
D | MediaRouteControllerDialogFragment.java | 20 import android.app.DialogFragment; 33 public class MediaRouteControllerDialogFragment extends DialogFragment {
|
D | MediaRouteChooserDialogFragment.java | 20 import android.app.DialogFragment; 34 public class MediaRouteChooserDialogFragment extends DialogFragment {
|
D | MediaRouteDialogPresenter.java | 22 import android.app.DialogFragment; 41 public static DialogFragment showDialogFragment(Activity activity, in showDialogFragment()
|
/frameworks/base/tests/SharedLibrary/lib/src/com/google/android/test/shared_library/ |
D | VersionDialog.java | 22 import android.app.DialogFragment; 35 public class VersionDialog extends DialogFragment {
|
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/ |
D | TimeZonePickerDialog.java | 20 import android.app.DialogFragment; 28 public class TimeZonePickerDialog extends DialogFragment implements
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
D | CreateDirectoryFragment.java | 23 import android.app.DialogFragment; 46 public class CreateDirectoryFragment extends DialogFragment {
|
/frameworks/opt/colorpicker/src/com/android/colorpicker/ |
D | ColorPickerDialog.java | 22 import android.app.DialogFragment; 34 public class ColorPickerDialog extends DialogFragment implements OnColorSelectedListener {
|
/frameworks/base/docs/html/training/location/ |
D | activity-recognition.jd | 80 the dialog in a {@link android.support.v4.app.DialogFragment}. The dialog may allow the 89 {@link android.support.v4.app.DialogFragment} must subclass 93 getSupportFragmentManager()} to display the {@link android.support.v4.app.DialogFragment}. 112 // Define a DialogFragment that displays the error dialog 113 public static class ErrorDialogFragment extends DialogFragment { 125 // Return a Dialog to the DialogFragment. 182 // Create a new DialogFragment for the error dialog 185 // Set the dialog in the DialogFragment 187 // Show the error dialog in the DialogFragment 439 can re-use the {@link android.support.v4.app.DialogFragment} class that you defined to [all …]
|
D | retrieve-current.jd | 89 the dialog in a {@link android.support.v4.app.DialogFragment}. The dialog may allow the 111 // Define a DialogFragment that displays the error dialog 112 public static class ErrorDialogFragment extends DialogFragment { 124 // Return a Dialog to the DialogFragment. 181 // Create a new DialogFragment for the error dialog 184 // Set the dialog in the DialogFragment 186 // Show the error dialog in the DialogFragment
|
D | receive-location-updates.jd | 89 the dialog in a {@link android.support.v4.app.DialogFragment}. The dialog may allow the 98 {@link android.support.v4.app.DialogFragment} must subclass 102 getSupportFragmentManager()} to display the {@link android.support.v4.app.DialogFragment}. 121 // Define a DialogFragment that displays the error dialog 122 public static class ErrorDialogFragment extends DialogFragment { 134 // Return a Dialog to the DialogFragment. 192 // Create a new DialogFragment for the error dialog 195 // Set the dialog in the DialogFragment 197 // Show the error dialog in the DialogFragment
|
D | geofencing.jd | 74 the dialog in a {@link android.support.v4.app.DialogFragment}. The dialog may allow the 83 {@link android.support.v4.app.DialogFragment} must subclass 87 getSupportFragmentManager()} to display the {@link android.support.v4.app.DialogFragment}. 106 // Define a DialogFragment that displays the error dialog 107 public static class ErrorDialogFragment extends DialogFragment { 122 // Return a Dialog to the DialogFragment. 183 // Create a new DialogFragment for the error dialog 186 // Set the dialog in the DialogFragment 188 // Show the error dialog in the DialogFragment 886 can re-use the {@link android.support.v4.app.DialogFragment} class that you defined to [all …]
|
/frameworks/support/v4/java/android/support/v4/app/ |
D | DialogFragment.java | 43 public class DialogFragment extends Fragment class 95 public DialogFragment() { in DialogFragment() method in DialogFragment
|
/frameworks/base/core/java/android/app/ |
D | DialogFragment.java | 140 public class DialogFragment extends Fragment class 187 public DialogFragment() { in DialogFragment() method in DialogFragment
|
D | MediaRouteButton.java | 163 DialogFragment f = MediaRouteDialogPresenter.showDialogFragment(getActivity(), in showDialogInternal()
|
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/ |
D | DatePickerDialog.java | 21 import android.app.DialogFragment; 52 public class DatePickerDialog extends DialogFragment implements
|
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/ |
D | SelectPrinterActivity.java | 22 import android.app.DialogFragment; 345 public static class AddPrinterAlertDialogFragment extends DialogFragment {
|
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/ |
D | TimePickerDialog.java | 21 import android.app.DialogFragment; 50 public class TimePickerDialog extends DialogFragment implements OnValueSelectedListener{
|
/frameworks/base/docs/html/sdk/api_diff/12/ |
D | missingSinces.txt | 21 NO DOC BLOCK: android.app.DialogFragment Method dismissAllowingStateLoss()
|
/frameworks/base/docs/html/develop/ |
D | index.jd | 178 …<p>The Dialogs API Guide now shows to use DialogFragment class, a simpler way to manage your dialo…
|
/frameworks/base/docs/html/google/auth/ |
D | api-client.jd | 292 public static class ErrorDialogFragment extends DialogFragment {
|
/frameworks/base/docs/html/guide/components/ |
D | fragments.jd | 174 <dt>{@link android.app.DialogFragment}</dt>
|