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

<<31323334353637383940>>

  /frameworks/base/docs/html/guide/topics/ui/controls/
pickers.jd 44 picker. The {@link android.support.v4.app.DialogFragment} manages the dialog lifecycle for you and
46 such as in a basic dialog on handsets or as an embedded part of the layout on large screens.</p>
94 public Dialog onCreateDialog(Bundle savedInstanceState) {
124 <p>For example, here's a button that, when clicked, calls a method to show the dialog:</p>
167 android.app.TimePickerDialog}. The only difference is the dialog you create for the fragment.</p>
199 public Dialog onCreateDialog(Bundle savedInstanceState) {
229 <p>For example, here's a button that, when clicked, calls a method to show the dialog:</p>
  /frameworks/base/docs/html/training/basics/intents/
sending.jd 177 <p class="img-caption"><strong>Figure 1.</strong> Example of the selection dialog that appears
183 identifies more than one activity that can handle the intent, it displays a dialog for the user to
216 <p class="img-caption"><strong>Figure 2.</strong> Example of the chooser dialog that appears
224 of the dialog; see figure 1). This is nice when performing an action for which the user
229 apps through which they might share an item&mdash;you should explicitly show a chooser dialog,
248 <p>This displays a dialog with a list of apps that respond to the intent passed to the {@link
250 dialog title.</p>
  /packages/apps/Settings/src/com/android/settings/
ActivityPicker.java 62 * Adapter of items that are displayed in this dialog.
86 // Create dialog parameters
107 * Handle clicking of dialog item by passing back
110 public void onClick(DialogInterface dialog, int which) {
117 * Handle canceled dialog by passing back {@link Activity#RESULT_CANCELED}.
119 public void onCancel(DialogInterface dialog) {
134 * Build and return list of items to be shown in dialog. Default
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
EventValueSelector.java 37 import org.eclipse.swt.widgets.Dialog;
49 final class EventValueSelector extends Dialog {
82 * Opens the display option dialog to edit a new descriptor.
102 * Opens the display option dialog, to edit a {@link OccurrenceDisplayDescriptor} object or
129 // Set the dialog size.
145 // actually open the dialog
148 // event loop until the dialog is closed.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
NewItemSelectionDialog.java 49 * A selection dialog to select the type of the new element node to
54 /** The UI node selected in the tree view before creating the new item selection dialog.
71 /** The potential XML Name to initially select in the selection dialog. This is computed
76 * Creates the new item selection dialog.
177 * selection dialog. Returns null if nothing can be found, otherwise returns the string
200 * Sets the last used item for this selection dialog for this file.
261 * Creates the dialog area.
  /packages/experimental/LoaderApp/res/values/
strings.xml 133 <!-- Title of the confirmation dialog for separating contacts into multiple instances -->
136 <!-- Confirmation dialog for separating contacts into multiple instances -->
168 <!-- Confirmation dialog title after users selects to delete a contact. -->
171 <!-- Warning dialog contents after users selects to delete a ReadOnly contact. -->
174 <!-- Warning dialog contents after users selects to delete a contact with ReadOnly and Writable sources. -->
177 <!-- Warning dialog contents after users selects to delete a contact with multiple Writable sources. -->
180 <!-- Confirmation dialog contents after users selects to delete a Writable contact. -->
224 <!-- Dialog title when you select a label when creating or edit a contact -->
249 <!-- Description in the dialog that appears if there are no pictures from which to create an icon for a contact -->
255 <!-- Title of the dialog used to set a custom label for a contact detail, like a phone number or email address
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPTransaction.java 52 import javax.sip.Dialog;
127 // private SIPDialog dialog;
837 * Gets the dialog object of this Transaction object. This object returns
838 * null if no dialog exists. A dialog only exists for a transaction when a
840 * either by a 1xx Provisional Response for an early dialog or a 200OK
841 * Response for a committed dialog.
843 * @return the Dialog Object of this Transaction object.
844 * @see Dialog
846 public abstract Dialog getDialog()
    [all...]
  /external/webkit/Tools/QtTestBrowser/
launcherwindow.cpp 864 QDialog* dialog = new QDialog(this); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
SipStackImpl.java 174 * Default is <it>false</it> This property controls a setting on the Dialog
176 * to <it>true</it>. This property can also be set on a per-dialog basis.
179 * controlled as follows : If the previous in-DIALOG request was an invite
180 * ClientTransaction then the next re-INVITEs that uses the dialog will wait
182 * in-DIALOG transaction was a INVITE ServerTransaction then Dialog waits for
183 * ACK before re-INVITE is allowed to be sent. If a dialog is not ACKed within
184 * 32 seconds, then the dialog is torn down and a BYE sent to the peer.</li>
191 * If set to false (the default), the application does NOT get notified when a Dialog in the
192 * NULL state is terminated. ( Dialogs in the NULL state are not associated with an actual SIP Dialog
    [all...]
  /external/sonivox/jet_tools/JetCreator/
JetCreator.py 409 """ Calls the dialog box for adding a segment """
456 """ Calls the dialog box for updating a segment """
631 """ Calls a dialog box to add an event to the current segment """
    [all...]
  /packages/apps/Browser/src/com/android/browser/
Tab.java 253 // Container class for the next error dialog that needs to be displayed
303 // Show the dialog now if the queue was empty and it is in foreground
417 * Show a dialog informing the user of the network error reported by
451 + "while dialog is still up");
462 public void onClick(DialogInterface dialog,
472 public void onClick(DialogInterface dialog,
481 public void onCancel(DialogInterface dialog) {
504 * Displays SSL error(s) dialog to the user.
522 public void onClick(DialogInterface dialog,
531 public void onClick(DialogInterface dialog,
    [all...]
  /external/chromium/chrome/browser/resources/
extensions_ui.html 214 #dialog input[type=button] {
220 #dialog input[type=text] {
250 #dialog {
259 html[dir=rtl] #dialog {
590 * dialog, and fire |callback| with the |filePath| that resulted. |selectType|
623 * Shows to modal HTML pack dialog.
630 * Hides the pack dialog.
652 * Pop up a select dialog to capture the extension path.
661 * Pop up a select dialog to capture the private key path.
683 <div id="dialog">
    [all...]
  /frameworks/base/docs/html/guide/appendix/
glossary.jd 96 <dt id="dialog">Dialog</dt> <dd> A floating window that that acts as a lightweight
97 form. A dialog can have button controls only and is intended to perform a
98 simple action (such as button choice) and perhaps return a value. A dialog
100 or perform complex actions. Android provides a default simple dialog for
101 you with optional buttons, though you can define your own dialog layout.
102 The base class for dialogs is {@link android.app.Dialog Dialog}.
247 most layout components of an Activity or Dialog screen (text boxes,
287 menus, and so on). Dialog and Activity use an implementation of this clas
    [all...]
  /packages/apps/Gallery2/res/values/
strings.xml 22 <!-- Used to format short video duration in Details dialog. minutes:seconds e.g. 00:30 -->
24 <!-- Used to format video duration in Details dialog. hours:minutes:seconds e.g. 0:21:30 -->
32 <!-- Message shown on the progress dialog to indicate we're loading the
36 <!-- Movie View Resume Playing dialog title -->
39 <!-- Movie View Start Playing dialog title -->
91 <!-- Displayed in the title of the dialog for things to do with a picture
100 <!-- Details dialog "OK" button. Dismisses dialog. -->
165 <!-- String used as a title of a progress dialog. The user can
400 <!-- The title of the dialog for choosing the type of widget. [CHAR LIMIT=20] --
    [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...]
  /packages/inputmethods/LatinIME/java/res/values/
strings.xml 25 <!-- Title for Latin keyboard settings activity / dialog -->
27 <!-- Title for Latin keyboard input options dialog [CHAR LIMIT=25] -->
282 <!-- Title of the button to add custom style entry in the settings dialog [CHAR LIMIT=15] -->
284 <!-- Title of the button to remove a custom style entry in the settings dialog [CHAR LIMIT=15] -->
286 <!-- Title of the button to save a custom style entry in the settings dialog [CHAR LIMIT=15] -->
288 <!-- Title of the spinner for choosing a language of custom style in the settings dialog [CHAR LIMIT=15] -->
290 <!-- Title of the spinner for choosing a keyboard layout of custom style in the settings dialog [CHAR LIMIT=15] -->
292 <!-- The message of the dialog to note that a custom input style needs to be enabled. [CHAR LIMIT=64] -->
294 <!-- Title of the button to enable a custom input style entry in the settings dialog [CHAR LIMIT=15] -->
296 <!-- Title of the button to postpone enabling a custom input style entry in the settings dialog [CHAR LIMIT=15] --
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/
VideoEditorActivity.java 28 import android.app.Dialog;
103 // Dialog ids
116 // Dialog parameters
453 // Dismiss the export progress dialog. If the export will still be pending
454 // when we return to this activity, we will display this dialog again.
638 // Present the user with a dialog to choose export options
674 public Dialog onCreateDialog(int id, final Bundle bundle) {
721 public void onClick(DialogInterface dialog, int which) {
732 public void onCancel(DialogInterface dialog) {
745 public void onClick(DialogInterface dialog, int which)
    [all...]
  /external/chromium/chrome/browser/ui/views/
hung_renderer_view.cc 155 // Initialize the controls in this dialog.
159 // Returns the bounds the dialog should be displayed at to be meaningfully
165 // Controls within the dialog box.
288 // the OK button to wait for responsiveness (and close the dialog) and our
290 // in the dialog being destroyed).
307 // Don't do anything if we're being called only because the dialog is being
  /packages/apps/Music/
AndroidManifest.xml 91 <activity android:name="AudioPreview" android:theme="@android:style/Theme.Dialog"
258 android:theme="@android:style/Theme.Dialog" android:exported="false" />
260 android:theme="@android:style/Theme.Dialog" android:exported="false" />
262 android:theme="@android:style/Theme.Dialog" android:exported="false" />
264 android:theme="@android:style/Theme.Dialog" android:exported="false" />
266 android:theme="@android:style/Theme.Dialog" android:exported="false" />
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Settings.java 368 public void onClick(DialogInterface dialog, int whichButton) {
377 public void onClick(DialogInterface dialog, int whichButton) {
378 dialog.dismiss();
426 public void onClick(DialogInterface dialog, int whichButton) {
436 public void onClick(DialogInterface dialog, int whichButton) {
437 dialog.dismiss();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyEditor.java 312 FlagXmlPropertyDialog dialog = local
317 dialog.open();
321 FlagXmlPropertyDialog dialog = local
325 dialog.open();
400 StringXmlPropertyDialog dialog = local
402 if (dialog.open() == Window.OK) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/usb/
UsbAccessoryTestActivity.java 23 import android.app.Dialog;
117 public void onClick(DialogInterface dialog, int which) {
335 public Dialog onCreateDialog(int id, Bundle args) {
  /external/chromium/chrome/browser/download/
download_request_limiter.h 54 // Max number of downloads before a "Prompt Before Download" Dialog is shown.
153 // dialog.
195 // For unit tests. If non-null this is used instead of creating a dialog.
  /external/chromium/chrome/browser/printing/
print_dialog_gtk.cc 53 // - Printer list out of sync with printer dialog UI.
226 // this dialog.
249 void PrintDialogGtk::OnResponse(GtkWidget* dialog, int response_id) {
  /external/chromium/chrome/browser/ui/cocoa/
html_dialog_window_controller.mm 119 // TODO(akalin): Support modal dialog boxes.
209 // in the HTML dialog window. We simply swallow all those events.
277 // TODO(akalin): add accelerator for ESC to close the dialog box.

Completed in 807 milliseconds

<<31323334353637383940>>