/frameworks/base/core/java/com/android/internal/app/ |
H A D | ExternalMediaFormatActivity.java | 32 * 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 D | NetInitiatedActivity.java | 37 * 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 D | BugreportWarningActivity.java | 68 public void onClick(DialogInterface dialog, int which) { argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/ |
H A D | UsbAccessoryUriActivity.java | 36 * 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 D | UsbConfirmActivity.java | 112 public void onClick(DialogInterface dialog, int which) { argument
|
H A D | UsbDebuggingActivity.java | 120 public void onClick(DialogInterface dialog, int which) { argument
|
H A D | UsbPermissionActivity.java | 159 public void onClick(DialogInterface dialog, int which) { argument
|
H A D | UsbStorageActivity.java | 56 * 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 D | ConfirmDialog.java | 98 public void onClick(DialogInterface dialog, int which) { argument
|
H A D | ManageDialog.java | 74 // 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 D | DialogInterface.java | 63 * 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 D | MenuDialogHelper.java | 47 * 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 D | MenuDialogHelper.java | 48 * 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 D | DatePickerDialog.java | 34 * 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 D | TimePickerDialog.java | 31 * 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 D | DialogFragment.java | 32 * 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 D | SearchManager.java | 56 * <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 D | PreferenceScreen.java | 174 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 D | DialogPreference.java | 40 * 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 D | JsDialogHelper.java | 89 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 D | Plugin.java | 200 // 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 D | ExternalStorageFormatter.java | 122 public void onCancel(DialogInterface dialog) { argument
|
/frameworks/base/services/java/com/android/server/power/ |
H A D | ShutdownThread.java | 98 * @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 D | DialogFragment.java | 42 * 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 D | SipHelper.java | 310 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...] |