HomeSort by relevance Sort by last modified time
    Searched full:dialog (Results 426 - 450 of 3536) sorted by null

<<11121314151617181920>>

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/
TagVerifierActivity.java 28 import android.app.Dialog;
65 // Arguments used for the dialog showing what was written to the tag and read from the tag.
285 public Dialog onCreateDialog(int id, Bundle args) {
317 public void onClick(DialogInterface dialog, int which) {
323 public void onCancel(DialogInterface dialog) {
340 ProgressDialog dialog = new ProgressDialog(this);
341 dialog.setMessage(getString(R.string.nfc_writing_tag));
342 return dialog;
346 ProgressDialog dialog = new ProgressDialog(this);
347 dialog.setMessage(getString(R.string.nfc_reading_tag))
    [all...]
NdefPushReceiverActivity.java 24 import android.app.Dialog;
116 public Dialog onCreateDialog(int id, Bundle args) {
137 protected void onPrepareDialog(int id, Dialog dialog, Bundle args) {
141 AlertDialog alert = (AlertDialog) dialog;
151 super.onPrepareDialog(id, dialog, args);
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
AuthenticatorActivity.java 26 import android.app.Dialog;
65 /** Keep track of the progress dialog so we can dismiss it */
121 protected Dialog onCreateDialog(int id, Bundle args) {
122 final ProgressDialog dialog = new ProgressDialog(this); local
123 dialog.setMessage(getText(R.string.ui_activity_authenticating));
124 dialog.setIndeterminate(true);
125 dialog.setCancelable(true);
126 dialog.setOnCancelListener(new DialogInterface.OnCancelListener() {
127 public void onCancel(DialogInterface dialog) {
134 // We save off the progress dialog in a field so that we can dismis
    [all...]
  /frameworks/webview/chromium/overlay/frameworks/base/core/res/res/values/
strings.xml 19 <!-- Date/time picker dialog strings -->
20 <!-- Title for the date picker dialog, which can be used to choose a date. [CHAR-LIMIT=32] -->
22 <!-- Label for 'set' button in date picker dialog, used to replace the contents of a field with the chosen date [CHAR-LIMIT=12] -->
24 <!-- Label for 'clear' button in date picker dialog, used to replace the contents of a field with the empty string [CHAR-LIMIT=12] -->
26 <!-- Label for 'other' button in date picker dialog and time picker dialog, used to close the list of suggestions and open the the full date/time picker [CHAR-LIMIT=32] -->
28 <!-- Title for the date/time picker dialog, which can be used to choose a date and time. [CHAR-LIMIT=32] -->
30 <!-- Title for the time picker dialog, which can be used to choose a time. [CHAR-LIMIT=32] -->
32 <!-- Value for AM in AM/PM in the time picker dialog. AM represents the morning (ante-meridiem). [CHAR-LIMIT=4] -->
34 <!-- Value for PM in AM/PM in the time picker dialog. PM represents the afternoon (post-meridiem). [CHAR-LIMIT=4]--
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
DialogTest.java 20 import android.app.Dialog;
59 * please refer to Dialog
90 new Dialog(mContext);
91 Dialog d = new Dialog(mContext, 0);
94 // But CTS can no assert dialog theme equals system internal theme.
96 d = new Dialog(mContext, R.style.TextAppearance);
156 Dialog d = mActivity.getDialog();
169 d = new Dialog(mContext);
175 final Dialog d = mActivity.getDialog()
    [all...]
  /cts/tests/tests/preference2/res/values/
strings.xml 33 <string name="dialog_based_preferences">Dialog-based preferences</string>
52 <string name="summary_yesno_preference">An example that uses a yes/no dialog</string>
56 <string name="summary_edittext_preference">An example that uses an edit text dialog</string>
60 <string name="summary_list_preference">An example that uses a list dialog</string>
96 <string name="dialog_message">"Dialog Message"</string>
98 <string name="title_dialog_preference">Dialog preference</string>
99 <string name="dialogtitle_dialog_preference">Dialog Title</string>
100 <string name="summary_dialog_preference">An example that uses a dialog</string>
104 <string name="cust_title_dialog_preference">Custom Dialog preference</string>
105 <string name="cust_dialogtitle_dialog_preference">Custom Dialog Title</string
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentDialog.java 43 + "Press the show button below to see the first dialog; pressing "
44 + "successive show buttons will display other dialog styles as a "
45 + "stack, with dismissing or back going to the previous dialog.");
72 // dialog, so make our own transaction and take care of that here.
74 Fragment prev = getFragmentManager().findFragmentByTag("dialog");
80 // Create and show the dialog.
82 newFragment.show(ft, "dialog");
101 //BEGIN_INCLUDE(dialog)
152 ((TextView)tv).setText("Dialog #" + mNum + ": using style "
167 //END_INCLUDE(dialog)
    [all...]
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentDialogSupport.java 44 + "Press the show button below to see the first dialog; pressing "
45 + "successive show buttons will display other dialog styles as a "
46 + "stack, with dismissing or back going to the previous dialog.");
73 // dialog, so make our own transaction and take care of that here.
75 Fragment prev = getSupportFragmentManager().findFragmentByTag("dialog");
81 // Create and show the dialog.
83 newFragment.show(ft, "dialog");
102 //BEGIN_INCLUDE(dialog)
152 ((TextView)tv).setText("Dialog #" + mNum + ": using style "
167 //END_INCLUDE(dialog)
    [all...]
  /external/chromium/chrome/browser/printing/cloud_print/
cloud_print_setup_flow.h 28 // This class is responsible for showing a cloud print setup dialog
29 // and perform operations to fill the content of the dialog and handle
30 // user actions in the dialog.
33 // 1. Showing the setup dialog.
34 // 2. Providing the URL for the content of the dialog.
50 // Called when the setup dialog is closed.
56 // the HTML dialog. |container| is kept up-to-date with the lifetime of the
57 // flow (e.g it is emptied on dialog close).
63 // Focuses the dialog. This is useful in cases where the dialog has bee
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/
sync_setup_handler.h 52 // Shows advanced configuration dialog without going through sign in dialog.
53 // Kicks the sync backend if necessary with showing spinner dialog until it
87 // to the "advanced settings" dialog, otherwise give the user the simpler
88 // "Sync Everything" dialog. Overridden by subclasses to allow them to skip
89 // the sync setup dialog if desired.
94 // Called when configuring sync is done to close the dialog and start syncing.
128 // A utility function to call before actually showing setup dialog. Makes sure
129 // that a new dialog can be shown and sets flag that setup is in progress.
138 // Displays an error dialog which shows timeout of starting the sync backend
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
web_view_experimental.js 20 'dialog': {
52 var WARNING_MSG_DIALOG_BLOCKED = '<webview>: %1 %2 dialog was blocked.';
68 'An action has already been taken for this "dialog" event.';
76 var dialog = {
87 webViewEvent.dialog = dialog;
95 // Tell the JavaScript garbage collector to track lifetime of |dialog| and
96 // call back when the dialog object has been collected.
97 MessagingNatives.BindToGC(dialog, function() {
112 // The default action is equivalent to canceling the dialog
    [all...]
  /external/chromium_org/chrome_frame/cfinstall/src/implementation/
dialoginteractiondelegate.js 7 * dialog component.
14 goog.require('goog.ui.Dialog');
21 * the installation flow using a goog.ui.Dialog .
29 * Whether we have already injected the dialog styles into the page.
36 * Injects the dialog styles into the page.
98 * The active dialog.
99 * @type {goog.ui.Dialog}
111 this.dialog_ = new goog.ui.Dialog('xdgcfinstall-dlg', true);
136 // By default, in IE, the dialog does not respect the width of its contents.
147 // Ask the dialog to re-center itself based on the new dimensions
    [all...]
  /external/chromium_org/win8/metro_driver/
metro_dialog_box.cc 31 // Only one dialog can be displayed at a given time.
34 // The message dialog display does not work correctly in snapped mode.
51 CheckHR(hr, "Failed to create message dialog");
84 CheckHR(hr, "Failed to show dialog");
89 // The dialog box displayed via the MessageDialog interface has the class name
90 // 'Shell_Dialog'. The dialog box is top level window. To find it we enumerate
99 DVLOG(1) << "Found top most dialog box: " << classname;
128 // We don't have a good way to dismiss the dialog box. Hack for now is to
129 // find the dialog box class in our process and close it via the WM_CLOSE
155 // The dialog box is destroyed once we return from invoke. Go ahead an
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_util.cc 440 // This is slightly broken in the case where a different window had a dialog,
514 "style \"gnome-dialog\" {\n"
522 "widget \"GtkDialog\" style : application \"gnome-dialog\"\n"
524 // Make our about dialog special, so the image is flush with the edge.
525 "style \"about-dialog\" {\n"
531 "widget \"about-dialog\" style : application \"about-dialog\"\n";
638 GtkWidget* AddButtonToDialog(GtkWidget* dialog, const gchar* text,
644 gtk_dialog_add_action_widget(GTK_DIALOG(dialog), button,
649 GtkWidget* BuildDialogButton(GtkWidget* dialog, int ids_id
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
JoinHeader.java 42 * from the initiator of the dialog. Requests sent by the callee to the caller
102 * messages. It serves as a general mechanism to identify a dialog, which is
106 * participant in the dialog. When a User Agent sends a request outside of a dialog,
108 * it contains a From tag only, providing "half" of the dialog ID. The dialog
120 * specific. Tags are helpful in fault tolerant systems, where a dialog is to
124 * tag in such a way that a backup can recognize a request as part of a dialog
128 * recover the dialog and any other state associated with it.
146 * request identifies the peer of the dialog. When a UA sends a reques
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
DeleteEventHelper.java 24 import android.app.Dialog;
44 * deletion, then this pops up a confirmation dialog. If the user confirms,
48 * If a repeating event is selected for deletion, then this pops up dialog
89 private Dialog.OnDismissListener mDismissListener;
135 public void onClick(DialogInterface dialog, int button) {
154 public void onClick(DialogInterface dialog, int button) {
171 public void onClick(DialogInterface dialog, int button) {
187 public void onClick(DialogInterface dialog, int button) {
197 * first popping up a dialog asking for confirmation (if the event is
198 * a normal event) or a dialog asking which events to delete (if th
270 AlertDialog dialog = new AlertDialog.Builder(mContext) local
323 AlertDialog dialog = new AlertDialog.Builder(mContext) local
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSecurity.java 21 import android.app.Dialog;
76 * @param showDialog If true, a simple warning dialog will be shown before kicking off
92 * to give the user a dialog (for context) about a device pin/password expiration event.
129 PasswordExpirationDialog dialog = local
133 LogUtils.d(TAG, "Showing password expiration dialog");
135 dialog.show(fm, "password_expiration");
143 // Show dialog first, unless already showing (e.g. after rotation)
146 SecurityNeededDialog dialog = local
149 LogUtils.d(TAG, "Showing security needed dialog");
151 dialog.show(fm, "security_needed")
321 final SecurityNeededDialog dialog = new SecurityNeededDialog(); local
387 final PasswordExpirationDialog dialog = new PasswordExpirationDialog(); local
    [all...]
  /packages/apps/Mms/res/values/
strings.xml 80 <!-- Dialog box title brought up when warning the user that a message could not be delivered -->
82 <!-- Dialog box message indicating that a message could not be delivered, including the time of last attempt -->
84 <!-- Dialog box message indicating that a message could not be delivered -->
200 <!-- Dialog message text explaining that a draft message will not be saved due to invalid recipients -->
202 <!-- Dialog box title indicating which recipients are invalid when the user tries to send a message with invalid recipients -->
213 <!-- Dialog message text when the user tries to send a message with invalid recipients -->
215 <!-- Dialog box title indicating the message cannot be sent because there are no valid recipients -->
217 <!-- Dialog message text indicating the message cannot be sent because there are no valid recipients -->
236 <!-- Alert dialog title when adding attachments is taking a while [CHAR LIMIT=none] -->
238 <!-- Alert dialog when adding attachments is taking a while --
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/print_preview/
print_preview_handler.h 43 // The handler for Javascript messages related to the print preview dialog.
69 // Displays a modal dialog, prompting the user to select a file.
72 // Called when the print preview dialog is destroyed. This is the last time
81 // dialog.
134 // Handles the request to hide the preview dialog for printing.
148 // Asks the initiator renderer to show the native print system dialog. |args|
152 // Callback for the signin dialog to call once signin is complete.
155 // Brings up a dialog to allow the user to sign into cloud print.
166 // Gathers UMA stats when the print preview dialog is about to close.
170 // Asks the browser to show the native printer management dialog
    [all...]
  /external/chromium_org/tools/grit/grit/gather/
rc_unittest.py 60 dlg = rc.Dialog(StringIO.StringIO('''IDD_ABOUTBOX DIALOGEX 22, 17, 230, 75
87 dlg = rc.Dialog(StringIO.StringIO('''IDD_ABOUTBOX DIALOGEX 22, 17, 230, 75
98 alt_dlg = rc.Dialog(StringIO.StringIO('''IDD_ABOUTBOX DIALOGEX 040704, 17, 230, 75
187 dialog = rc.Dialog(StringIO.StringIO('''
206 dialog.Parse()
207 self.failUnless(len(dialog.GetTextualIds()) == 10)
211 dialog = rc.Dialog(StringIO.StringIO('''
212 IDD_SIDEBAR_EMAIL_PANEL_PROPPAGE DIALOG DISCARDABLE 0, 0, 264, 22
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/11/changes/
android.app.Dialog.html 10 android.app.Dialog
74 Class android.app.<A HREF="../../../../reference/android/app/Dialog.html" target="_top"><font size="+2"><code>Dialog</code></font></A>
86 <A NAME="android.app.Dialog.dispatchKeyShortcutEvent_added(android.view.KeyEvent)"></A>
87 <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/Dialog.html#dispatchKeyShortcutEvent(android.view.KeyEvent)" target="_top"><code>dispatchKeyShortcutEvent</code></A>(<code>KeyEvent</code>)</nobr>
93 <A NAME="android.app.Dialog.getActionBar_added()"></A>
94 <nobr><code>ActionBar</code>&nbsp;<A HREF="../../../../reference/android/app/Dialog.html#getActionBar()" target="_top"><code>getActionBar</code></A>()</nobr>
100 <A NAME="android.app.Dialog.invalidateOptionsMenu_added()"></A>
101 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Dialog.html#invalidateOptionsMenu()" target="_top"><code>invalidateOptionsMenu</code></A>()</nobr>
107 <A NAME="android.app.Dialog.onActionModeFinished_added(android.view.ActionMode)"></A
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
DateWidgets1.java 24 import android.app.Dialog;
90 protected Dialog onCreateDialog(int id) {
105 protected void onPrepareDialog(int id, Dialog dialog) {
109 ((TimePickerDialog) dialog).updateTime(mHour, mMinute);
112 ((DatePickerDialog) dialog).updateDate(mYear, mMonth, mDay);
  /external/chromium_org/chrome/browser/resources/options/chromeos/
keyboard_overlay.html 15 pref="settings.language.xkb_remap_search_key_to" dialog-pref>
28 pref="settings.language.xkb_remap_control_key_to" dialog-pref>
41 i18n-options="remapAltKeyToValue" dialog-pref></select>
56 i18n-options="remapCapsLockKeyToValue" dialog-pref></select>
71 i18n-options="remapDiamondKeyToValue" dialog-pref></select>
79 pref="settings.language.send_function_keys" dialog-pref>
  /external/chromium_org/chrome/browser/ui/views/extensions/
extension_dialog.h 30 // Modal dialog containing contents provided by an extension.
31 // Dialog is automatically centered in the owning window and has fixed size.
37 // Create and show a dialog with |url| centered over the provided window.
40 // |web_contents| is the tab that spawned the dialog.
41 // |width| and |height| are the size of the dialog in pixels.
53 // Notifies the dialog that the observer has been destroyed and should not
  /external/chromium_org/third_party/WebKit/public/web/
WebWindowFeatures.h 62 bool dialog; member in struct:blink::WebWindowFeatures
77 , dialog(false)
99 , dialog(f.dialog)
122 result.dialog = dialog;

Completed in 1272 milliseconds

<<11121314151617181920>>