HomeSort by relevance Sort by last modified time
    Searched defs:dialog (Results 201 - 225 of 300) sorted by null

1 2 3 4 5 6 7 891011>>

  /packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
AllIntentsActivity.java 388 final SelectAccountDialogFragment dialog = new SelectAccountDialogFragment(); local
389 dialog.setArguments(SelectAccountDialogFragment.createBundle(position));
390 dialog.show(getFragmentManager(), SelectAccountDialogFragment.TAG);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
MailActivity.java 20 import android.app.Dialog;
194 public Dialog onCreateDialog(int id, Bundle bundle) {
195 final Dialog dialog = mController.onCreateDialog(id, bundle); local
196 return dialog == null ? super.onCreateDialog(id, bundle) : dialog;
221 public void onPrepareDialog(int id, Dialog dialog, Bundle bundle) {
222 super.onPrepareDialog(id, dialog, bundle);
223 mController.onPrepareDialog(id, dialog, bundle)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
AdditionalSubtypeSettings.java 22 import android.app.Dialog;
273 public void onCancel(final DialogInterface dialog) {
280 public void onClick(final DialogInterface dialog, final int which) {
281 super.onClick(dialog, which);
321 final Dialog dialog = getDialog(); local
322 if (dialog == null || !dialog.isShowing()) {
526 public void onClick(DialogInterface dialog, int which) {
  /packages/services/Telephony/src/com/android/phone/
EmergencyDialer.java 21 import android.app.Dialog;
125 private String mLastNumber; // last number we tried to dial. Used to restore error dialog.
553 // erase the number and throw up an alert dialog.
606 protected Dialog onCreateDialog(int id) {
607 AlertDialog dialog = null; local
609 // construct dialog
610 dialog = new AlertDialog.Builder(this)
616 // blur stuff behind the dialog
617 dialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_BLUR_BEHIND);
619 return dialog;
    [all...]
CallFeaturesSetting.java 22 import android.app.Dialog;
230 // dialog identifiers for voicemail
406 * Id of the dialog being currently shown.
601 if (DBG) log("onPreferenceClick: request preference click on dialog close: " +
622 if (DBG) log("updating default for voicemail dialog");
1408 AlertDialog dialog = b.create(); local
1416 ProgressDialog dialog = new ProgressDialog(this); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutActionBar.java 720 ResolutionChooserDialog dialog = new ResolutionChooserDialog(chooser.getShell()); local
721 if (dialog.open() == Window.OK) {
722 monitor = dialog.getDensity();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
DeviceChooserDialog.java 37 import org.eclipse.jface.dialogs.Dialog;
64 * A dialog that lets the user choose a device to deploy an application.
69 public class DeviceChooserDialog extends Dialog implements IDeviceChangeListener {
329 * Create the button bar: We override the Dialog implementation of this method
363 // set dialog title
584 final DeviceChooserDialog dialog = this; local
601 AndroidDebugBridge.removeDeviceChangeListener(dialog);
633 final DeviceChooserDialog dialog = this; local
659 AndroidDebugBridge.removeDeviceChangeListener(dialog);
667 * Returns whether the dialog is in "device" mode (true), or in "avd" mode (false)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceChooser.java 89 * A dialog to let the user select a resource based on a resource type.
92 /** The return code from the dialog for the user choosing "Clear" */
94 /** The dialog button ID for the user choosing "Clear" */
119 * Whether the {@link #mEditValueText} textfield should be shown when the dialog is created.
126 * when the widget is created, to distinguish between "the dialog was created" and
142 * Creates a Resource Chooser dialog.
242 * Sets whether this dialog should show the value field as a separate text
243 * value (and take the resulting value of the dialog from this text field
282 * Sets the initial dialog size
643 // Show a name/value dialog entering the key name and the valu
681 NameValueDialog dialog = new NameValueDialog(shell, getFilter()); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
ImportPage.java 346 DirectoryDialog dialog = new DirectoryDialog(getShell(), SWT.OPEN); local
349 dialog.setFilterPath(path);
351 String file = dialog.open();
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardHostView.java 619 final AlertDialog dialog = new AlertDialog.Builder(mContext) local
625 dialog.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG);
627 dialog.show();
697 // period, we'll post this dialog every time as a clear warning until the
716 // don't show timeout dialog because we show account unlock screen next
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorFragment.java 22 import android.app.Dialog;
1161 CancelEditDialogFragment dialog = new CancelEditDialogFragment(); local
1168 AlertDialog dialog = new AlertDialog.Builder(getActivity()) local
1536 JoinSuggestedContactDialogFragment dialog = local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
ConfigureAssetSetPage.java 687 FileDialog dialog = new FileDialog(mPickImageButton.getShell(), SWT.OPEN); local
691 dialog.setFilterPath(curLocation);
694 String file = dialog.open();
737 MessageDialog dialog = new MessageDialog(mChooseClipart.getShell(), local
825 FontDialog dialog = new FontDialog(mFontButton.getShell()); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface.databinding_1.4.0.I20100601-0800.jar 
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPDialog.java 119 * Tracks dialogs. A dialog is a peer to peer association of communicating SIP entities. For
120 * INVITE transactions, a Dialog is created when a success message is received (i.e. a response
122 * dialog identifier that can be used to retrieve this structure from the SipStack.
131 public class SIPDialog implements javax.sip.Dialog, DialogExt {
153 // Should be transient, in case the dialog is serialized it will be null
204 // Dialog.
220 // the amount of time to keep this dialog around before the stack GC's it
258 // List of event listeners for this dialog
264 // keep the whole transaction object for the duration of the dialog. It also
318 * Send BYE to the Dialog.
376 SIPDialog dialog = SIPDialog.this; local
399 SIPDialog dialog = SIPDialog.this; local
    [all...]
SIPTransactionStack.java 66 import javax.sip.Dialog;
123 // A set of methods that result in dialog creations.
263 * Use the user supplied router for all out of dialog requests.
302 // Flag to indicate whether the stack will provide dialog
323 // If this is set to true, then To tag checking on the Dialog layer is
358 // Max time for a forked response to arrive. After this time, the original dialog
450 // Notify may or may not create a dialog. This is handled in
454 // Dialog dable.
496 // Dialog dable.
553 * Print the dialog table
635 SIPDialog dialog = this.earlyDialogTable.get(dialogId); local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventView.java 299 TimePickerDialog dialog; local
308 dialog = mStartTimePickerDialog;
317 dialog = mEndTimePickerDialog;
324 if (dialog != null && !dialog.isAdded()) {
325 dialog.show(fm, FRAG_TAG_TIME_PICKER);
639 // This is called if the user cancels the "No calendars" dialog.
640 // The "No calendars" dialog is shown if there are no syncable calendars.
642 public void onCancel(DialogInterface dialog) {
643 if (dialog == mLoadingCalendarsDialog)
    [all...]
  /packages/apps/Settings/src/com/android/settings/
DataUsageSummary.java 53 import android.app.Dialog;
1677 final ConfirmLimitFragment dialog = new ConfirmLimitFragment(); local
1720 final CycleEditorFragment dialog = new CycleEditorFragment(); local
1779 final WarningEditorFragment dialog = new WarningEditorFragment(); local
1842 final LimitEditorFragment dialog = new LimitEditorFragment(); local
    [all...]
Settings.java 24 import android.app.Dialog;
763 final NoHomeDialogFragment dialog = new NoHomeDialogFragment(); local
764 dialog.show(parent.getFragmentManager(), null);
768 public Dialog onCreateDialog(Bundle savedInstanceState) {
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
PerformanceResultsPreferencePage.java 436 * @return The dialog title
457 DirectoryDialog dialog = new DirectoryDialog(getShell(), SWT.OPEN); local
458 dialog.setText(getDialogTitle());
459 dialog.setMessage("Select local database directory:");
460 dialog.setFilterPath(location);
461 String path = dialog.open();
    [all...]
  /frameworks/base/core/java/android/widget/
Spinner.java 68 * Use a dialog window for selecting spinner options.
665 public void onClick(DialogInterface dialog, int which) {
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
    [all...]
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipSessionGroup.java 52 import javax.sip.Dialog;
453 Dialog dialog = session.mDialog; local
454 if (dialog == null) return Response.DECLINE;
456 if (!dialog.getLocalTag().equals(replaces.getToTag()) ||
457 !dialog.getRemoteTag().equals(replaces.getFromTag())) {
465 !dialog.getRemoteParty().equals(referredBy.getAddress())) {
541 Dialog mDialog;
774 Dialog dialog = null local
882 Dialog dialog = transaction.getDialog(); local
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettings.java 22 import android.app.Dialog;
146 * for any/all accounts. If an account name string is provided, a warning dialog will be
226 // Show dialog (first time only - don't re-show on a rotation)
227 LoginWarningDialog dialog = local
229 dialog.show(getFragmentManager(), "loginwarning");
328 // But we shouldn't just finish(), as we want to show "discard changes?" dialog
361 * we put up the exit-save-changes dialog. This will work for the following cases:
579 * with a dialog, and the user OK'd it.
609 // Possibly uninteresting fragment, such as a dialog.
792 * Dialog fragment to show "exit with unsaved changes?" dialo
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ConversationList.java 707 * Start the process of putting up a dialog to confirm deleting a thread,
723 * Start the process of putting up a dialog to confirm deleting threads,
735 * Build and show the proper delete thread dialog. The UI is slightly different
753 // Show the number of threads getting deleted in the confirmation dialog.
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintList.java 780 ColumnDialog dialog = new ColumnDialog(getShell(), mColumns, getVisibleColumns()); local
781 if (dialog.open() == Window.OK) {
782 mVisibleColumns = dialog.getSelectedColumns();
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
LintPreferencePage.java 178 // of closing the options dialog)
367 MessageDialog dialog = new MessageDialog( local
376 int result = dialog.open();

Completed in 1204 milliseconds

1 2 3 4 5 6 7 891011>>