HomeSort by relevance Sort by last modified time
    Searched full:toast (Results 151 - 175 of 524) sorted by null

1 2 3 4 5 67 8 91011>>

  /packages/apps/Settings/src/com/android/settings/bluetooth/
Utils.java 24 import android.widget.Toast;
102 Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
FeedbackFragment.java 31 import android.widget.Toast;
96 Toast.makeText(getActivity(),
98 Toast.LENGTH_LONG).show();
  /packages/services/Telephony/src/com/android/phone/
MMIDialogActivity.java 26 import android.widget.Toast;
67 Toast.makeText(this, R.string.incall_status_dialed_mmi, Toast.LENGTH_SHORT).show();
DeleteFdnContactScreen.java 30 import android.widget.Toast;
133 // Replace the status field with a toast to make things appear similar
137 Toast.makeText(this, statusMsg, Toast.LENGTH_SHORT)
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
MessageTestActivity.java 41 import android.widget.Toast;
318 String toast = msg.getData().getString(BluetoothChatService.TOAST); local
319 Toast.makeText(this, toast, Toast.LENGTH_LONG).show();
  /packages/apps/Settings/src/com/android/settings/
DeviceInfoSettings.java 32 import android.widget.Toast;
71 Toast mDevHitToast;
202 mDevHitToast = Toast.makeText(getActivity(), R.string.show_dev_on,
203 Toast.LENGTH_LONG);
210 mDevHitToast = Toast.makeText(getActivity(), getResources().getQuantityString(
212 Toast.LENGTH_SHORT);
219 mDevHitToast = Toast.makeText(getActivity(), R.string.show_dev_already,
220 Toast.LENGTH_LONG);
IccLockSettings.java 33 import android.widget.Toast;
362 Toast.makeText(this, getPinPasswordErrorMessage(attemptsRemaining), Toast.LENGTH_LONG)
371 Toast.makeText(this, getPinPasswordErrorMessage(attemptsRemaining),
372 Toast.LENGTH_LONG)
375 Toast.makeText(this, mRes.getString(R.string.sim_change_succeeded),
376 Toast.LENGTH_SHORT)
  /development/samples/ApiDemos/src/com/example/android/apis/app/
RemoteService.java 39 import android.widget.Toast;
88 Toast.makeText(this, R.string.remote_service_stopped, Toast.LENGTH_SHORT).show();
140 Toast.makeText(this, "Task removed: " + rootIntent, Toast.LENGTH_LONG).show();
323 Toast.makeText(Binding.this, R.string.remote_service_connected,
324 Toast.LENGTH_SHORT).show();
335 Toast.makeText(Binding.this, R.string.remote_service_disconnected,
336 Toast.LENGTH_SHORT).show();
419 Toast.makeText(Binding.this
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/media/
VideoViewDemo.java 24 import android.widget.Toast;
  /development/samples/Support4Demos/src/com/example/android/supportv4/accessibility/
AccessibilityManagerSupportActivity.java 29 import android.widget.Toast;
79 * Registers an AccessibilityStateChangeListener that show a Toast
91 Toast.makeText(AccessibilityManagerSupportActivity.this,
93 Toast.LENGTH_SHORT).show();
  /external/chromium/chrome/browser/notifications/
notification_object_proxy.h 19 // which corresponds to a notification toast on the desktop. It can be signaled
  /external/chromium/chrome/common/extensions/docs/examples/api/notifications/
error.html 34 <img src="64.png" alt="Toast">
  /external/chromium_org/chrome/browser/notifications/
notification_object_proxy.h 13 // which corresponds to a notification toast on the desktop. It can be signaled
  /external/chromium_org/chrome/browser/ssl/
ssl_add_certificate_android.cc 24 // and display a toast (small fading dialog) to the user if it is
  /external/chromium_org/chrome/common/extensions/docs/examples/api/notifications/
background.js 17 'Time to make the toast.' // The body.
  /external/chromium_org/win8/metro_driver/
toast_notification_handler.h 13 // Provides functionality to display a metro style toast notification.
  /frameworks/base/core/res/res/layout/
transient_notification.xml 33 android:textAppearance="@style/TextAppearance.Toast"
  /frameworks/base/packages/SystemUI/res/values-land/
strings.xml 20 <!-- Rotation lock toast text: shown when rotation lock is turned on in landscape orientation.
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
ActionMenuItemView.java 32 import android.widget.Toast;
194 Toast cheatSheet = Toast.makeText(context, mItemData.getTitle(), Toast.LENGTH_SHORT);
  /packages/apps/CertInstaller/res/values/
strings.xml 58 <!-- toast message -->
60 <!-- toast message -->
62 <!-- toast message -->
64 <!-- toast message -->
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
UninstallAppProgress.java 35 import android.widget.Toast;
80 // Show a Toast and finish the activity
82 Toast.makeText(ctx, statusText, Toast.LENGTH_LONG).show();
  /development/apps/CustomLocale/src/com/android/customlocale2/
CustomLocaleActivity.java 45 import android.widget.Toast;
152 Toast.makeText(this,
154 Toast.LENGTH_SHORT)
255 Toast.makeText(this,
257 Toast.LENGTH_SHORT)
406 Toast.makeText(this,
408 Toast.LENGTH_SHORT)
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
ContentFragment.java 42 import android.widget.Toast;
303 Toast.makeText(getActivity(), "Error writing to USB/external storage.",
304 Toast.LENGTH_SHORT).show();
331 Toast.makeText(getActivity(), "Error writing bitmap data.",
332 Toast.LENGTH_SHORT).show();
338 Toast.makeText(getActivity(), "Error writing to USB/external storage.",
339 Toast.LENGTH_SHORT).show();
  /external/chromium_org/ui/message_center/views/
toast_contents_view.cc 34 // The width of a toast before animated reveal and after closing.
58 // the whole toast seems to slide although the actual bound of the widget
68 // This is destroyed when the toast window closes.
83 // popup toast, and the new contents should be read through a11y feature.
91 // Place/move the toast widgets. Currently it stacks the widgets from the
365 // We want to ensure that this toast always goes to the native desktop,
366 // not the Ash desktop (since there is already another toast contents view
  /packages/apps/Contacts/src/com/android/contacts/detail/
PhotoSelectionHandler.java 35 import android.widget.Toast;
244 Toast.makeText(mContext, R.string.photoPickerNotFoundText, Toast.LENGTH_LONG).show();
337 Toast.makeText(
338 mContext, R.string.photoPickerNotFoundText, Toast.LENGTH_LONG).show();
348 Toast.makeText(
349 mContext, R.string.photoPickerNotFoundText, Toast.LENGTH_LONG).show();

Completed in 1693 milliseconds

1 2 3 4 5 67 8 91011>>