HomeSort by relevance Sort by last modified time
    Searched refs:Dialog (Results 1 - 25 of 311) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Settings/src/com/android/settings/
DialogCreatable.java 19 import android.app.Dialog;
22 * Letting the class, assumed to be Fragment, create a Dialog on it. Should be useful
28 public Dialog onCreateDialog(int dialogId);
EditPinPreference.java 19 import android.app.Dialog;
63 Dialog dialog = getDialog(); local
64 return dialog != null && dialog.isShowing();
76 Dialog dialog = getDialog(); local
77 if (dialog == null || !dialog.isShowing()) {
  /external/nist-sip/java/javax/sip/
DialogTerminatedEvent.java 6 private Dialog mDialog;
8 public DialogTerminatedEvent(Object source, Dialog dialog) {
10 mDialog = dialog;
13 public Dialog getDialog() {
RequestEvent.java 7 private Dialog mDialog;
12 Dialog dialog, Request request) {
14 mDialog = dialog;
19 public Dialog getDialog() {
ResponseEvent.java 7 private Dialog mDialog;
12 Dialog dialog, Response response) {
14 mDialog = dialog;
19 public Dialog getDialog() {
Transaction.java 11 Dialog getDialog();
  /cts/tests/tests/holo/src/android/holo/cts/modifiers/
DialogBuilder.java 19 import android.app.Dialog;
24 * a Dialog. Since a Dialog shows in a new window, implementation
26 * the Dialog for testing.
30 Dialog buildDialog(View view);
DialogModifier.java 19 import android.app.Dialog;
25 * Wacky {@link LayoutModifier} that takes a {@link Dialog} and transplants into the
38 Dialog dialog = mBuilder.buildDialog(view); local
43 // get the dialog as a view
44 View newView = dialog.getWindow().getDecorView();
46 // remove it from the dialog
47 dialog.getWindow().getWindowManager().removeView(newView);
ProgressDialogBuilder.java 21 import android.app.Dialog;
35 public Dialog buildDialog(View view) {
51 throw new IllegalArgumentException("Bad dialog type: " + mDialogType);
AlertDialogBuilder.java 20 import android.app.Dialog;
46 public Dialog buildDialog(View view) {
51 builder.setTitle("Exit Dialog")
  /external/nist-sip/java/gov/nist/javax/sip/
DialogExt.java 3 import javax.sip.Dialog;
14 public interface DialogExt extends Dialog {
17 * Returns the SipProvider that was used for the first transaction in this Dialog
26 * Sets a flag that indicates that this Dialog is part of a BackToBackUserAgent. If this flag
29 * handle dialog errors. Once this flag is set for a dialog, it cannot be changed.
30 * This flag can be set on a stack-wide basis, on a per-provider basis or on a per Dialog basis.
31 * This flag must only be set at the time of Dialog creation. If the flag is set after the first
32 * request or response is seen by the Dialog, the behavior of this flag is undefined.
40 * Turn off sequence number validation for this dialog. This passes all requests to th
    [all...]
DialogTimeoutEvent.java 20 import javax.sip.Dialog;
25 * dialog does not receive or send an ACK.
36 * Constructs a DialogTerminatedEvent to indicate a dialog
40 * @param dialog - the dialog that timed out.
42 public DialogTimeoutEvent(Object source, Dialog dialog, Reason reason) {
44 m_dialog = dialog;
50 * Gets the Dialog associated with the event. This
51 * enables application developers to access the dialog associated to this
    [all...]
SipListenerExt.java 18 import javax.sip.Dialog;
25 * SipProvider. Timeout events represent timers expiring in the underlying SipProvider dialog
26 * state machine. These timeout's events notify the application that a dialog has timed out.</li>
35 * Processes an expiration Timeout of an underlying {@link Dialog} handled by this
36 * SipListener. This Event notifies the application that a dialog Timer expired in the
37 * Dialog's state machine. Such a condition can occur when the application fails to send an
39 * DialogTimeoutEvent encapsulates the specific timeout type and the dialog identifier. The
44 * the dialog to avoid any dialog leaks.
46 * @param timeoutEvent - the timeoutEvent received indicating the dialog timed out
    [all...]
ResponseEventExt.java 4 import javax.sip.Dialog;
16 Dialog dialog, Response response) {
17 super(source,clientTransaction,dialog,response);
SipStackExt.java 15 import javax.sip.Dialog;
38 * Get the collection of dialogs currently in the Dialog table. This is useful for debugging
42 public Collection<Dialog> getDialogs();
45 * Get the ReferedTo dialog in the Replaces header.
47 * @return Dialog object matching the Replaces header, provided it is in an appropriate state
52 public Dialog getReplacesDialog(ReplacesHeader replacesHeader);
95 * Get the dialog in the Join header.
97 * @return Dialog object matching the Join header, provided it is in an appropriate state to
102 public Dialog getJoinDialog(JoinHeader joinHeader);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
PixelConverter.java 13 import org.eclipse.jface.dialogs.Dialog;
49 return Dialog.convertHeightInCharsToPixels(fFontMetrics, chars);
56 return Dialog.convertHorizontalDLUsToPixels(fFontMetrics, dlus);
63 return Dialog.convertVerticalDLUsToPixels(fFontMetrics, dlus);
70 return Dialog.convertWidthInCharsToPixels(fFontMetrics, chars);
  /cts/tests/tests/permission/src/android/permission/cts/
PermissionStubActivity.java 21 import android.app.Dialog;
43 public Dialog getDialog() {
  /frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
DialogActivity.java 27 import android.app.Dialog;
53 mButton1.setText("Dialog WITHOUT EditText");//(R.string.open_dialog_scrollable);
63 mButton2.setText("Dialog WITH EditText");//(R.string.open_dialog_nonscrollable);
81 protected Dialog onCreateDialog(int id)
94 protected Dialog createDialog(boolean bEditText)
107 Dialog d = new Dialog(this);
108 d.setTitle("The DIALOG!!!");
EditTextActivityDialog.java 22 import android.app.Dialog;
77 protected Dialog onCreateDialog(int id) {
88 protected Dialog createDialog(boolean scrollable) {
104 Dialog d = new Dialog(EditTextActivityDialog.this);
  /cts/tests/src/android/app/cts/
AppStubActivity.java 20 import android.app.Dialog;
35 private Dialog mDialog;
69 public Dialog getDialogById(int id) {
74 public Dialog onCreateDialog(int id) {
76 mDialog = new Dialog(this);
81 protected void onPrepareDialog(int id, Dialog dialog) {
82 super.onPrepareDialog(id, dialog);
  /gdk/samples/PhotoEditor/src/com/android/photoeditor/
SpinnerProgressDialog.java 19 import android.app.Dialog;
26 * Spinner model progress dialog that disables all tools for user interaction after it shows up and
29 public class SpinnerProgressDialog extends Dialog {
34 SpinnerProgressDialog dialog = new SpinnerProgressDialog(tools); local
35 dialog.show();
36 return dialog;
60 // Pass touch events to tools for killing idle even when the progress dialog is shown.
  /packages/apps/Contacts/src/com/android/contacts/util/
DialogManager.java 20 import android.app.Dialog;
41 * To actually show a Dialog, the View uses {@link DialogManager#showDialogInView(View, Bundle)},
63 * Called by a View to show a dialog. It has to pass itself and a Bundle with extra information.
85 public Dialog onCreateDialog(final int id, final Bundle bundle) {
101 final Dialog dialog = ((DialogShowingView)view).createDialog(bundle); local
102 if (dialog == null) {
103 return dialog;
106 // As we will never re-use this dialog, we can completely kill it here
107 dialog.setOnDismissListener(new OnDismissListener()
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
CandidatesViewManager.java 19 import android.app.Dialog;
71 protected Dialog mDialog = null;
158 * Display Dialog.
166 mDialog = new Dialog(view.getContext(), R.style.Dialog);
177 * Close Dialog.
  /frameworks/base/core/java/android/preference/
PreferenceScreen.java 19 import android.app.Dialog;
47 * another screen of preferences as a {@link Dialog} or via a
92 private Dialog mDialog;
174 Dialog dialog = mDialog = new Dialog(context, context.getThemeResId()); local
176 dialog.getWindow().requestFeature(Window.FEATURE_NO_TITLE);
178 dialog.setTitle(title);
180 dialog.setContentView(childPrefScreen);
181 dialog.setOnDismissListener(this)
226 final Dialog dialog = mDialog; local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/dialog/
IndeterminateProgressDialog.java 17 package com.android.contacts.dialog;
19 import android.app.Dialog;
28 * Indeterminate progress dialog wrapped up in a DialogFragment to work even when the device
30 * dialog. There is an additional parameter of the minimum amount of time to display the progress
31 * dialog even after a call to dismiss the dialog {@link #dismiss()} or
34 * To create and show the progress dialog, use
38 * To dismiss the dialog, use {@link #dismiss()} or {@link #dismissAllowingStateLoss()} on the
52 private Dialog mOldDialog;
64 * Creates and shows an indeterminate progress dialog. Once the progress dialog is shown, i
90 final ProgressDialog dialog = new ProgressDialog(getActivity()); local
    [all...]

Completed in 3284 milliseconds

1 2 3 4 5 6 7 8 91011>>