HomeSort by relevance Sort by last modified time
    Searched refs:Dialog (Results 226 - 250 of 308) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Settings/src/com/android/settings/
UserDictionarySettings.java 21 import android.app.Dialog;
ApnEditor.java 20 import android.app.Dialog;
601 protected Dialog onCreateDialog(int id) {
617 protected void onPrepareDialog(int id, Dialog dialog) {
618 super.onPrepareDialog(id, dialog);
624 ((AlertDialog)dialog).setMessage(msg);
AccessibilitySettings.java 24 import android.app.Dialog;
129 // Dialog IDs.
528 // Don't show the dialog if no market app is found/installed.
541 public Dialog onCreateDialog(int dialogId) {
549 public void onClick(DialogInterface dialog, int which) {
550 // dismiss the dialog before launching
552 // the dialog removal occurs after
    [all...]
  /prebuilts/devtools/tools/lib/
uiautomatorviewer.jar 
hierarchyviewer2.jar 
  /external/replicaisland/src/com/replica/replicaisland/
AndouKun.java 24 import android.app.Dialog;
741 protected Dialog onCreateDialog(int id) {
742 Dialog dialog = null; local
745 dialog = new AlertDialog.Builder(this)
748 public void onClick(DialogInterface dialog, int whichButton) {
765 return dialog;
  /frameworks/base/core/java/com/android/internal/app/
ActionBarImpl.java 36 import android.app.Dialog;
74 private Dialog mDialog;
162 public ActionBarImpl(Dialog dialog) {
163 mDialog = dialog;
164 init(dialog.getWindow().getDecorView(), false);
    [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...]
  /frameworks/base/core/java/android/app/
Activity.java 611 * but not in the foreground, such as one sitting behind a foreground dialog)
976 final Dialog dialog = onCreateDialog(dialogId, args); local
    [all...]
AlertDialog.java 39 * A subclass of Dialog that can display one, two or three buttons. If you only want to
40 * display a String in this dialog box, use the setMessage() method. If you
52 * any views in the dialog return true from {@link View#onCheckIsTextEditor()
53 * View.onCheckIsTextEditor()}. Generally you want this set for a Dialog
64 public class AlertDialog extends Dialog implements DialogInterface {
69 * the traditional (pre-Holo) alert dialog theme.
105 * to get the dialog's style (such as {@link android.R.attr#alertDialogTheme}
150 * Gets one of the buttons used in the dialog.
152 * If a button does not exist in the dialog, null will be returned.
157 * @return The button from the dialog, or null if a button does not exist
931 final AlertDialog dialog = new AlertDialog(P.mContext, mTheme, false); local
950 AlertDialog dialog = create(); local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorFragment.java 22 import android.app.Dialog;
1160 CancelEditDialogFragment dialog = new CancelEditDialogFragment(); local
1167 AlertDialog dialog = new AlertDialog.Builder(getActivity()) local
1535 JoinSuggestedContactDialogFragment dialog = local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPServerTransaction.java 48 import javax.sip.Dialog;
185 private SIPDialog dialog; field in class:SIPServerTransaction
675 // JvB: Removed the condition 'dialog!=null'. Trying should also
1172 SIPDialog dialog = (SIPDialog) this.dialog; local
1236 SIPDialog dialog = this.dialog; local
    [all...]
  /external/sonivox/jet_tools/JetCreator/
JetAudition.py 57 class Audition(wx.Dialog):
60 wx.Dialog.__init__(self, None, -1, title=JetDefs.DLG_AUDITION)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
QuickSettings.java 34 import android.app.Dialog;
734 public void onClick(DialogInterface dialog, int which) {
737 // dialog a chance to go away before it takes a
754 final Dialog dialog = builder.create(); local
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
GlobalActions.java 27 import android.app.Dialog;
76 * 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()
332 GlobalActionsDialog dialog = new GlobalActionsDialog(mContext, params); local
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
ActionBarImplBase.java 19 import android.app.Dialog;
58 private Dialog mDialog;
  /packages/apps/Contacts/src/com/android/contacts/activities/
ConfirmAddDetailActivity.java 20 import android.app.Dialog;
83 * This is a dialog-themed activity for confirming the addition of a detail to an existing contact
96 * If there's no editable accounts on the system, we'll set {@link #mIsReadOnly} and the dialog
100 * Note when there's no accounts, it *is* okay to show the picker / dialog, because the local-only
268 // Retrieve references to all the Views in the dialog activity.
285 protected Dialog onCreateDialog(int id, Bundle args) {
288 // Nobody knows about the Dialog
289 Log.w(TAG, "Unknown dialog requested, id: " + id + ", args: " + args);
626 // No editable account type found. The dialog will be read-only mode.
738 * Shows all the contents of the dialog to the user at one time. This should only be calle
868 ProgressDialog dialog = (sProgressDialog == null) ? null : sProgressDialog.get(); local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupEditorFragment.java 22 import android.app.Dialog;
162 SELECTING_ACCOUNT, // Account select dialog is showing
230 // Account select dialog is showing. Don't setup the editor yet.
251 // No Account specified. Let the user choose from a disambiguation dialog.
324 // it without showing a dialog.
330 return; // Don't show a dialog.
542 CancelEditDialogFragment dialog = new CancelEditDialogFragment(); local
543 dialog.setTargetFragment(fragment, 0);
544 dialog.show(fragment.getFragmentManager(), "cancelEditor");
548 public Dialog onCreateDialog(Bundle savedInstanceState)
549 AlertDialog dialog = new AlertDialog.Builder(getActivity()) local
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsFragment.java 21 import android.app.Dialog;
689 * Dialog fragment to show "remove account?" dialog
698 * Create the dialog with parameters
710 public Dialog onCreateDialog(Bundle savedInstanceState) {
721 public void onClick(DialogInterface dialog, int whichButton) {
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
GalleryPicker.java 25 import android.app.Dialog;
125 Dialog mMediaScanningDialog;
127 // Display a dialog if the storage is being scanned now.
ImageGallery.java 23 import android.app.Dialog;
81 private Dialog mMediaScanningDialog;
289 public void onClick(DialogInterface dialog, int which) {
290 dialog.dismiss();
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
RunningServiceDetails.java 7 import android.app.Dialog;
522 // dialog that gets created can find it.
575 public Dialog onCreateDialog(Bundle savedInstanceState) {
590 public void onClick(DialogInterface dialog, int which) {
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiSettings.java 25 import android.app.Dialog;
171 // Save the dialog details
496 // If the dialog is showing, save its state.
587 /** Bypass dialog for unsecured networks */
612 /** Bypass dialog for unsecured, unsaved networks */
640 public Dialog onCreateDialog(int dialogId) {
666 public void onClick(DialogInterface dialog, int id) {
674 public void onClick(DialogInterface dialog, int id) {
685 public void onClick(DialogInterface dialog, int id) {
693 public void onClick(DialogInterface dialog, int id)
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
OverlayLinearLayout.java 22 import android.app.Dialog;
57 // Dialog parameter ids
682 * Create a new dialog
684 * @param id The dialog id
685 * @param bundle The dialog bundle
686 * @return The dialog
688 public Dialog onCreateDialog(int id, final Bundle bundle) {
709 public void onClick(DialogInterface dialog, int which) {
721 public void onClick(DialogInterface dialog, int which) {
726 public void onCancel(DialogInterface dialog) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitLaunchConfigurationTab.java 62 import org.eclipse.jface.dialogs.Dialog;
165 Dialog.applyDialogFont(comp);
550 * Show a dialog that lists all main types
578 SelectionDialog dialog = new TestSelectionDialog(shell, types); local
579 dialog.setTitle(JUnitMessages.JUnitLaunchConfigurationTab_testdialog_title);
580 dialog.setMessage(JUnitMessages.JUnitLaunchConfigurationTab_testdialog_message);
581 if (dialog.open() == Window.CANCEL) {
585 Object[] results = dialog.getResult();
604 * Show a dialog that lets the user select a Android project. This in turn provides
923 ElementTreeSelectionDialog dialog = new ElementTreeSelectionDialog(getShell(), local
    [all...]

Completed in 2520 milliseconds

1 2 3 4 5 6 7 8 91011>>