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

12

/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DDatePickerDialog.java123 void onDateSet(DatePickerDialog dialog, int year, int monthOfYear, int dayOfMonth); argument
136 // Empty constructor required for dialog fragment.
141 * @param year The initial year of the dialog.
142 * @param monthOfYear The initial month of the dialog.
143 * @param dayOfMonth The initial day of the dialog.
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DActionMenuPresenter.java627 public void onDismiss(DialogInterface dialog) { argument
628 super.onDismiss(dialog);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DSpinnerICS.java55 * Use a dialog window for selecting spinner options.
450 public void onClick(DialogInterface dialog, int which) { argument
452 dialog.dismiss();
456 * Sets the prompt to display when the dialog is shown.
464 * Sets the prompt to display when the dialog is shown.
465 * @param promptId the resource ID of the prompt to display when the dialog is shown
472 * @return The prompt to display when the dialog is shown
684 public void onClick(DialogInterface dialog, int which) { argument
/frameworks/base/core/java/android/app/
H A DDialog.java64 * that managed this dialog.
126 * Create a Dialog window that uses the default dialog frame style.
137 * Create a Dialog window that uses a custom dialog style.
146 * <var>context</var>. If 0, the default dialog theme will be used.
203 * Retrieve the {@link ActionBar} attached to this dialog, if present.
205 * @return The ActionBar attached to the dialog or null if no ActionBar is present.
212 * Sets the Activity that owns this dialog. An example use: This Dialog will
215 * @param activity The Activity that owns this dialog.
226 * Activity will be the owner (by default). Depending on how this dialog was
236 * @return Whether the dialog i
1230 ListenersHandler(Dialog dialog) argument
[all...]
H A DActivity.java614 * but not in the foreground, such as one sitting behind a foreground dialog)
982 final Dialog dialog = onCreateDialog(dialogId, args);
983 if (dialog == null) {
986 dialog.dispatchOnCreate(state);
987 return dialog;
1231 // save each dialog's bundle, gather the ids
1450 // Close any open search dialog
2997 * this method the first time, and hang onto it thereafter. Any dialog
3005 * <p>If you would like an opportunity to prepare your dialog before it is shown,
3008 * @param id The id of the dialog
3031 onPrepareDialog(int id, Dialog dialog) argument
3060 onPrepareDialog(int id, Dialog dialog, Bundle args) argument
[all...]
/frameworks/base/core/java/android/view/
H A DVolumePanel.java55 * show the volume dialog when the user changes the volume. What a mess.
123 /** The button that expands the dialog to show all sliders */
227 WarningDialogReceiver(Context context, Dialog dialog, VolumePanel volumePanel) { argument
229 mDialog = dialog;
298 public void onDismiss(DialogInterface dialog) {
738 // Showing dialog - use collapsed state
869 public void onClick(DialogInterface dialog, int which) {
/frameworks/base/core/java/android/widget/
H A DSpinner.java68 * Use a dialog window for selecting spinner options.
665 public void onClick(DialogInterface dialog, int which) { argument
667 dialog.dismiss();
687 * Sets the prompt to display when the dialog is shown.
695 * Sets the prompt to display when the dialog is shown.
696 * @param promptId the resource ID of the prompt to display when the dialog is shown
703 * @return The prompt to display when the dialog is shown
991 public void onClick(DialogInterface dialog, int which) { argument
/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java155 public ButtonHandler(DialogInterface dialog) { argument
156 mDialog = new WeakReference<DialogInterface>(dialog);
266 * Set the view to display in the dialog.
274 * Set the view to display in the dialog along with the spacing around that view
799 * @param listView The ListView that will be shown in the dialog.
810 public void apply(AlertController dialog) { argument
812 dialog.setCustomTitle(mCustomTitleView);
815 dialog.setTitle(mTitle);
818 dialog.setIcon(mIcon);
821 dialog
868 createListView(final AlertController dialog) argument
[all...]
H A DActionBarImpl.java172 public ActionBarImpl(Dialog dialog) { argument
173 mDialog = dialog;
174 init(dialog.getWindow().getDecorView());
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DGlobalActions.java76 * Helper to show the global actions dialog. Each item is an {@link Action} that
142 * Show the global actions dialog (creating if necessary)
151 // Show delayed, so that the dismiss of the previous dialog completes
183 * Create the global actions dialog.
184 * @return A new dialog.
204 // Launch ECM exit dialog
281 public void onClick(DialogInterface dialog, int which) {
283 // dialog a chance to go away before it takes a
296 AlertDialog dialog = builder.create();
297 dialog
421 onDismiss(DialogInterface dialog) argument
433 onClick(DialogInterface dialog, int which) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSMSDispatcher.java1117 * Dialog listener for SMS confirmation dialog.
1143 public void onClick(DialogInterface dialog, int which) { argument
1173 public void onCancel(DialogInterface dialog) { argument
1174 Rlog.d(TAG, "dialog dismissed: don't send SMS");
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java2872 public void onDismiss(DialogInterface dialog) { argument
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java963 EditorManager(EditStyledText est, StyledTextDialog dialog) { argument
965 mActions = new EditModeActions(mEST, this, dialog);
2138 public void onClick(DialogInterface dialog, int which) {
2165 public void onClick(DialogInterface dialog, int which) {
2224 public void onClick(DialogInterface dialog, int which) {
2231 public void onClick(DialogInterface dialog, int which) {
2283 public void onClick(DialogInterface dialog, int which) {
2300 public void onClick(DialogInterface dialog, int which) {
2329 public void onClick(DialogInterface dialog, int which) {
2823 EditModeActions(EditStyledText est, EditorManager manager, StyledTextDialog dialog) { argument
[all...]

Completed in 238 milliseconds

12