HomeSort by relevance Sort by last modified time
    Searched full:dialog (Results 326 - 350 of 1945) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/browser/chromeos/
native_dialog_window.cc 26 // Gets the default widget of given dialog.
27 GtkWidget* GetDialogDefaultWidget(GtkDialog* dialog) {
31 GTK_CONTAINER(dialog->action_area));
81 // Init and attach to native dialog.
90 // NativeViewHost for the dialog's contents.
166 // the dialog ourselves and no longer interested in it.
196 // Get default widget of the dialog.
199 // Get focus widget of the dialog.
202 // Create a GtkAlignment as dialog contents container.
208 // Move dialog contents into our container
    [all...]
  /frameworks/base/core/java/android/app/
ProgressDialog.java 38 * <p>A dialog showing a progress indicator and an optional text message or view.
40 * <p>The dialog can be made cancelable on back key press.</p>
110 ProgressDialog dialog = new ProgressDialog(context); local
111 dialog.setTitle(title);
112 dialog.setMessage(message);
113 dialog.setIndeterminate(indeterminate);
114 dialog.setCancelable(cancelable);
115 dialog.setOnCancelListener(cancelListener);
116 dialog.show();
117 return dialog;
    [all...]
  /packages/apps/Browser/res/values/
strings.xml 41 <!-- Sign-in dialog -->
42 <!-- This is used as the title of a dialog which is used to sign in to a secure site.
63 <!-- Label for a button on an SSL error dialog that allows the user to see
66 <!-- Page Info dialog strings -->
73 <!-- Label for a button on an SSL error dialog that lets the user continue
76 <!-- Title for an SSL error dialog -->
78 <!-- Label for a button on an SSL error dialog that lets the user view the
81 <!-- Label for a button on an SSL error dialog that lets the user go back to
85 <!-- Message in an SSL Error dialog -->
87 <!-- Message in an SSL Error dialog --
    [all...]
  /external/chromium/chrome/browser/printing/
print_dialog_cloud.cc 38 // This means hosting a dialog containing HTML/JavaScript and using
40 // page setup settings from the dialog contents and provide the
41 // generated print data to the dialog contents for uploading to the
55 // show an HTML dialog using that class as the delegate. That class
62 // interactions with the dialog contents, including handing in the
63 // print data and getting any page setup parameters that the dialog
64 // contents provides. As part of bringing up the dialog,
72 // The WebUI continues dialog bring-up, calling
74 // additional object model capabilities are registered for the dialog
76 // dialog contents are adjusted to allow the dialog contents to clos
    [all...]
  /packages/apps/CellBroadcastReceiver/res/values/
strings.xml 26 <!-- Text for dismiss button in broadcast message view dialog. [CHAR LIMIT=25] -->
45 <!-- Delete broadcast confirmation dialog message. [CHAR LIMIT=NONE] -->
47 <!-- Delete all broadcasts confirmation dialog message. [CHAR LIMIT=NONE] -->
49 <!-- Delete button text for delete broadcast dialog. [CHAR LIMIT=25] -->
51 <!-- Cancel button text for delete broadcast dialog. [CHAR LIMIT=25] -->
54 <!-- ETWS dialog title for Earthquake Warning. [CHAR LIMIT=50] -->
56 <!-- ETWS dialog title for Tsunami Warning. [CHAR LIMIT=50] -->
58 <!-- ETWS dialog title for Earthquake and Tsunami Warning. [CHAR LIMIT=50] -->
60 <!-- ETWS dialog title for test message. [CHAR LIMIT=50] -->
62 <!-- ETWS dialog title for other emergency type. [CHAR LIMIT=50] --
    [all...]
  /development/apps/GestureBuilder/src/com/android/gesture/builder/
GestureBuilderActivity.java 19 import android.app.Dialog;
84 private Dialog mRenameDialog;
225 protected Dialog onCreateDialog(int id) {
233 protected void onPrepareDialog(int id, Dialog dialog) {
234 super.onPrepareDialog(id, dialog);
240 private Dialog createRenameDialog() {
249 builder.setOnCancelListener(new Dialog.OnCancelListener() {
250 public void onCancel(DialogInterface dialog) {
255 new Dialog.OnClickListener()
    [all...]
  /external/chromium-trace/src/shared/js/cr/ui/
dialogs.js 11 // The DOM element from the dialog which should receive focus when the
12 // dialog is first displayed.
39 this.container_.className = 'cr-dialog-container';
43 this.shield_.className = 'cr-dialog-shield';
49 this.frame_.className = 'cr-dialog-frame';
54 this.title_.className = 'cr-dialog-title';
58 this.closeButton_.className = 'cr-dialog-close';
64 this.text_.className = 'cr-dialog-text';
68 buttons.className = 'cr-dialog-buttons';
72 this.okButton_.className = 'cr-dialog-ok'
    [all...]
  /frameworks/base/core/res/res/values/
themes_device_defaults.xml 89 <!-- Dialog attributes -->
91 <item name="dialogTheme">@android:style/Theme.DeviceDefault.Dialog</item>
92 <item name="alertDialogTheme">@android:style/Theme.DeviceDefault.Dialog.Alert</item>
241 <!-- Dialog attributes -->
243 <item name="dialogTheme">@android:style/Theme.DeviceDefault.Light.Dialog</item>
244 <item name="alertDialogTheme">@android:style/Theme.DeviceDefault.Light.Dialog.Alert</item>
353 <!-- DeviceDefault theme for dialog windows and activities. This changes the window to be
355 theme on an activity if you would like to make an activity that looks like a Dialog. -->
356 <style name="Theme.DeviceDefault.Dialog" parent="Theme.Holo.Dialog" >
    [all...]
  /frameworks/base/core/java/android/webkit/
WebChromeClient.java 107 * @param isDialog True if the new window should be a dialog, rather than
146 * Tell the client to display a javascript alert dialog. If the client
148 * dialog. If the client returns false, it will continue execution.
150 * @param url The url of the page requesting the dialog.
153 * @return boolean Whether the client will handle the alert dialog.
161 * Tell the client to display a confirm dialog to the user. If the client
163 * confirm dialog and call the appropriate JsResult method. If the
167 * @param url The url of the page requesting the dialog.
171 * @return boolean Whether the client will handle the confirm dialog.
179 * Tell the client to display a prompt dialog to the user. If the clien
    [all...]
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
PackageInstallerActivity.java 21 import android.app.Dialog;
53 * The package is first parsed and the user is notified of parse errors via a dialog.
57 * a confirmation dialog (to replace the existing package) is presented to the user.
80 // Dialog identifiers used in showDialog
112 // TODO better fix for this? Remove dialog so that it gets created again
118 public Dialog onCreateDialog(int id, Bundle bundle) {
129 public void onClick(DialogInterface dialog, int which) {
133 public void onClick(DialogInterface dialog, int which) {
146 public void onClick(DialogInterface dialog, int which) {
151 public void onClick(DialogInterface dialog, int which)
    [all...]
UninstallerActivity.java 21 import android.app.Dialog;
58 // Dialog identifiers used in showDialog
64 public Dialog onCreateDialog(int id) {
73 public void onClick(DialogInterface dialog, int which) {
83 // Display uninstall failed dialog
90 public void onClick(DialogInterface dialog, int which) {
195 public void onCancel(DialogInterface dialog) {
  /external/chromium/chrome/browser/ui/views/
file_manager_dialogs.cc 22 // Shows a dialog box for selecting a file or a folder.
75 // Get the size of the dialog.
85 // A callback to notify the delegate that the dialog closed.
99 // away. Only relevant if your dialog hosts code that calls
101 // is set to true, then the dialog is closed. The default is false.
148 // selects FileManagerDialog as the dialog of choice.
174 LOG(ERROR) << "File dialog already in use!";
collected_cookies_win.h 29 // This is the Views implementation of the collected cookies dialog.
31 // CollectedCookiesWin is a dialog that displays the allowed and blocked
32 // cookies of the current tab contents. To display the dialog, invoke
  /frameworks/base/core/java/android/preference/
EditTextPreference.java 37 * in a dialog. This {@link EditText} can be modified either programmatically
47 * The edit text shown in the dialog.
122 * Adds the EditText widget of this preference to the dialog's view.
124 * @param dialogView The dialog view.
163 * Returns the {@link EditText} widget that will be shown in the dialog.
165 * @return The {@link EditText} widget that will be shown in the dialog.
174 // We want the input method to show, if possible, when dialog is displayed
VolumePreference.java 19 import android.app.Dialog;
48 /** May be null if the dialog isn't visible. */
74 // dialog doesn't also show the normal volume adjust toast.
129 Dialog dialog = getDialog(); local
130 if (dialog != null && dialog.isShowing()) {
131 View view = dialog.getWindow().getDecorView()
134 // Stopped while dialog was showing, revert changes
  /packages/apps/Browser/src/com/android/browser/preferences/
GeneralPreferencesFragment.java 126 final AlertDialog dialog = new AlertDialog.Builder(getActivity()) local
130 public void onClick(DialogInterface dialog, int which) {
140 public void onClick(DialogInterface dialog, int which) {
141 dialog.cancel();
150 dialog.getButton(AlertDialog.BUTTON_POSITIVE).performClick();
156 dialog.getWindow().setSoftInputMode(
158 dialog.show();
  /packages/apps/Camera/res/values/
strings.xml 19 <!-- title for the dialog showing the error of camera hardware -->
22 <!-- message for the dialog showing the error of camera hardware -->
25 <!-- message for the dialog showing the camera is disabled because of security policies. Camera cannot be used. -->
63 <!-- Confirmation dialog when restoring settings -->
84 <!-- Settings screen, camera selection dialog title. Users can select a camera from the phone (front-facing or back-facing). [CHAR LIMIT=20] -->
99 <!-- Settings screen, Record location dialog choices -->
114 <!-- Describes the preference dialog for choosing interval between frame capture for
115 time lapse recording. Appears at top of the dialog. [CHAR LIMIT=30] -->
136 <!-- Settings screen, dialog choice for 5 megapixels picture size [CHAR LIMIT=15] -->
138 <!-- Settings screen, dialog choice for 3 megapixels picture size [CHAR LIMIT=15] --
    [all...]
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertFullScreen.java 45 * Intent extra for full screen alert launched from dialog subclass as a result of the
100 // We use a custom title, so remove the standard dialog title bar
108 // Turn on the screen unless we're being launched from the dialog subclass as a result of
115 // Save message for passing from dialog to fullscreen activity, and for marking read.
131 /* Initialize dialog text from alert message. */
205 * Ignore the back button for emergency alerts (overridden by alert dialog so that the dialog
  /packages/apps/Launcher2/src/com/android/launcher2/
WallpaperChooserDialogFragment.java 19 import android.app.Dialog;
107 public void onDismiss(DialogInterface dialog) {
108 super.onDismiss(dialog);
109 /* On orientation changes, the dialog is effectively "dismissed" so this is called
110 * when the activity is no longer associated with this dying dialog fragment. We
120 * a dialog in that mode
123 public Dialog onCreateDialog(Bundle savedInstanceState) {
135 * generate a view to display. Otherwise, a dialog will be created in
172 // Click handler for the Dialog's GridView
  /cts/tests/tests/holo/src/android/holo/cts/modifiers/
AlertDialogBuilder.java 20 import android.app.Dialog;
46 public Dialog buildDialog(View view) {
51 builder.setTitle("Exit Dialog")
  /development/samples/ApiDemos/src/com/example/android/apis/app/
Forwarding.java 34 a confirmation dialog before the user goes on to another activity -- once the
35 user has confirmed this operation, they should not see the dialog again if they
38 <p>Note that another way to implement a confirmation dialog would be as
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
MainActivity.java 27 import android.app.Dialog;
59 private static final String ACTION_DIALOG = "com.example.android.hcgallery.action.DIALOG";
136 showDialog("This is indeed an awesome dialog.");
250 // dialog, so make our own transaction and take care of that here.
255 // Show the dialog.
256 newFragment.show(ft, "dialog");
275 getDialogPendingIntent("Tapped the 'dialog' button in the notification."));
342 /** Dialog implementation that shows a simple dialog as a fragment */
354 public Dialog onCreateDialog(Bundle savedInstanceState)
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
captcha_view.h 26 // A dialog box that shows a CAPTCHA image and allows user to input response.
43 // |is_standalone| is true when CaptchaView is not presented as dialog.
90 // True when view is not hosted inside dialog,
  /external/chromium/chrome/browser/resources/file_manager/
README.harness 14 This will display a "Open File" dialog by default. You can switch to another
15 kind of dialog using the links at the top of the page.
20 The "Save File" dialog type includes "New Folder" button. This can be used to
  /external/chromium/chrome/browser/ui/cocoa/importer/
import_progress_dialog_cocoa.h 21 // Class that acts as a controller for the dialog that shows progress for an
29 // Strings bound to static labels in the UI dialog.
63 // Closes the dialog.

Completed in 702 milliseconds

<<11121314151617181920>>