Searched defs:dialog (Results 1 - 25 of 38) sorted by relevance

12

/frameworks/base/core/java/com/android/internal/app/
H A DExternalMediaFormatActivity.java32 * It uses the alert dialog style. It will be launched from a notification, or from settings
59 // Set up the "dialog"
93 public void onClick(DialogInterface dialog, int which) { argument
H A DNetInitiatedActivity.java37 * requests. It uses the alert dialog style. It will be launched from a notification.
86 // Set up the "dialog"
124 public void onClick(DialogInterface dialog, int which) { argument
/frameworks/base/packages/Shell/src/com/android/shell/
H A DBugreportWarningActivity.java68 public void onClick(DialogInterface dialog, int which) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DUsbAccessoryUriActivity.java36 * show this dialog to the user to allow them to optionally visit that URL for more
57 // sanity check before displaying dialog
84 public void onClick(DialogInterface dialog, int which) { argument
H A DUsbConfirmActivity.java112 public void onClick(DialogInterface dialog, int which) { argument
H A DUsbDebuggingActivity.java120 public void onClick(DialogInterface dialog, int which) { argument
H A DUsbPermissionActivity.java159 public void onClick(DialogInterface dialog, int which) { argument
H A DUsbStorageActivity.java56 * dialog style. It will be launched from a notification.
217 public void onClick(DialogInterface dialog, int which) {
285 // Display error dialog
303 // Display error dialog
307 // Display dialog to user
317 // Check for list of storage users and display dialog if needed.
325 public void onCancel(DialogInterface dialog) { argument
/frameworks/base/packages/VpnDialogs/src/com/android/vpndialogs/
H A DConfirmDialog.java98 public void onClick(DialogInterface dialog, int which) { argument
H A DManageDialog.java74 // mConfig can be null if we are a restricted user, in that case don't show this dialog
128 public void onClick(DialogInterface dialog, int which) { argument
/frameworks/base/core/java/android/content/
H A DDialogInterface.java63 * Interface used to allow the creator of a dialog to run some code when the
64 * dialog is canceled.
66 * This will only be called when the dialog is canceled, if the creator
72 * This method will be invoked when the dialog is canceled.
74 * @param dialog The dialog that was canceled will be passed into the
77 public void onCancel(DialogInterface dialog); argument
81 * Interface used to allow the creator of a dialog to run some code when the
82 * dialog is dismissed.
86 * This method will be invoked when the dialog i
91 onDismiss(DialogInterface dialog) argument
105 onShow(DialogInterface dialog) argument
122 onClick(DialogInterface dialog, int which) argument
137 onClick(DialogInterface dialog, int which, boolean isChecked) argument
156 onKey(DialogInterface dialog, int keyCode, KeyEvent event) argument
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuDialogHelper.java47 * Shows menu as a dialog.
55 // Get the builder for the dialog
92 public boolean onKey(DialogInterface dialog, int keyCode, KeyEvent event) { argument
115 dialog.dismiss();
133 * Dismisses the menu's dialog.
144 public void onDismiss(DialogInterface dialog) { argument
166 public void onClick(DialogInterface dialog, int which) { argument
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DMenuDialogHelper.java48 * Shows menu as a dialog.
56 // Get the builder for the dialog
95 public boolean onKey(DialogInterface dialog, int keyCode, KeyEvent event) { argument
118 dialog.dismiss();
136 * Dismisses the menu's dialog.
147 public void onDismiss(DialogInterface dialog) { argument
169 public void onClick(DialogInterface dialog, int which) { argument
/frameworks/base/core/java/android/app/
H A DDatePickerDialog.java34 * A simple dialog containing an {@link android.widget.DatePicker}.
68 * @param context The context the dialog is to run in.
70 * @param year The initial year of the dialog.
71 * @param monthOfYear The initial month of the dialog.
72 * @param dayOfMonth The initial day of the dialog.
83 * @param context The context the dialog is to run in.
84 * @param theme the theme to apply to this dialog
86 * @param year The initial year of the dialog.
87 * @param monthOfYear The initial month of the dialog.
88 * @param dayOfMonth The initial day of the dialog
115 onClick(DialogInterface dialog, int which) argument
[all...]
H A DTimePickerDialog.java31 * A dialog that prompts the user for the time of day using a {@link TimePicker}.
79 * @param theme the theme to apply to this dialog
114 public void onClick(DialogInterface dialog, int which) { argument
H A DDialogFragment.java32 * A fragment that displays a dialog window, floating on top of its
35 * the dialog (deciding when to show, hide, dismiss it) should be done through
36 * the API here, not with direct calls on the dialog.
40 * content of the dialog. Alternatively, they can override
41 * {@link #onCreateDialog(Bundle)} to create an entirely custom dialog, such
63 * events from the dialog and takes care of removing its own state when they
67 * remove itself when the dialog is dismissed.
76 * dialog}
83 * <p>This removes any currently shown dialog, creates a new DialogFragment
94 * generate the view hierarchy inside of a dialog, yo
443 onCancel(DialogInterface dialog) argument
446 onDismiss(DialogInterface dialog) argument
[all...]
H A DSearchManager.java56 * <p>For more information about using the search dialog and adding search
622 * the search dialog. Made available for testing purposes.
726 public void onCancel(DialogInterface dialog) { argument
736 public void onDismiss(DialogInterface dialog) { argument
/frameworks/base/core/java/android/preference/
H A DPreferenceScreen.java174 Dialog dialog = mDialog = new Dialog(context, context.getThemeResId());
176 dialog.getWindow().requestFeature(Window.FEATURE_NO_TITLE);
178 dialog.setTitle(title);
180 dialog.setContentView(childPrefScreen);
181 dialog.setOnDismissListener(this);
183 dialog.onRestoreInstanceState(state);
187 getPreferenceManager().addPreferencesScreen(dialog);
189 dialog.show();
192 public void onDismiss(DialogInterface dialog) { argument
194 getPreferenceManager().removePreferencesScreen(dialog);
[all...]
H A DDialogPreference.java40 * dialog-based. These preferences will, when clicked, open a dialog showing the
62 /** The dialog, if it is showing. */
94 * Sets the title of the dialog. This will be shown on subsequent dialogs.
104 * @param dialogTitleResId The dialog title as a resource.
119 * Sets the message of the dialog. This will be shown on subsequent dialogs.
121 * This message forms the content View of the dialog and conflicts with
122 * list-based dialogs, for example. If setting a custom View on a dialog via
134 * @param dialogMessageResId The dialog message as a resource.
149 * Sets the icon of the dialog
324 requestInputMethod(Dialog dialog) argument
374 onClick(DialogInterface dialog, int which) argument
378 onDismiss(DialogInterface dialog) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DJsDialogHelper.java89 Log.w(TAG, "Cannot create a dialog, the WebView context is not an Activity");
132 public void onCancel(DialogInterface dialog) { argument
136 public void onClick(DialogInterface dialog, int which) { argument
149 public void onClick(DialogInterface dialog, int which) { argument
177 // We can only display the alert dialog if mContext is
H A DPlugin.java200 // Show a simple popup dialog containing the description
217 public void onClick(DialogInterface dialog, int which) { argument
/frameworks/base/core/java/com/android/internal/os/storage/
H A DExternalStorageFormatter.java122 public void onCancel(DialogInterface dialog) { argument
/frameworks/base/services/java/com/android/server/power/
H A DShutdownThread.java98 * @param context Context used to display the shutdown progress dialog.
138 public void onClick(DialogInterface dialog, int which) {
144 closer.dialog = sConfirmDialog;
156 public Dialog dialog; field in class:ShutdownThread.CloseDialogReceiver
166 dialog.cancel();
179 * @param context Context used to display the shutdown progress dialog.
194 * @param context Context used to display the shutdown progress dialog.
213 // throw up an indeterminate system dialog to indicate radio is
/frameworks/support/v4/java/android/support/v4/app/
H A DDialogFragment.java42 * normal dialog.
55 * is entirely responsible for drawing the dialog.
61 * {@link #STYLE_NO_FRAME}, but also disables all input to the dialog.
89 * fragment's dialog. This can be used for some common dialog behaviors,
112 * Display the dialog, adding the fragment to the given FragmentManager. This
131 * Display the dialog, adding the fragment using an existing transaction
149 * Dismiss the fragment and its dialog. If the fragment was added to the
208 * @param cancelable If true, the dialog is cancelable. The default
224 * Controls whether this fragment should be shown in a dialog
340 onCancel(DialogInterface dialog) argument
343 onDismiss(DialogInterface dialog) argument
[all...]
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipHelper.java310 public ClientTransaction sendReinvite(Dialog dialog, argument
313 Request request = dialog.createRequest(Request.INVITE);
328 dialog.sendRequest(clientTransaction);
424 public void sendInviteAck(ResponseEvent event, Dialog dialog) argument
429 Request ack = dialog.createAck(cseq);
431 dialog.sendAck(ack);
434 public void sendBye(Dialog dialog) throws SipException { argument
435 Request byeRequest = dialog.createRequest(Request.BYE);
437 dialog.sendRequest(mSipProvider.getNewClientTransaction(byeRequest));
463 public void sendReferNotify(Dialog dialog, Strin argument
530 getCallId(Dialog dialog) argument
[all...]

Completed in 349 milliseconds

12