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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SysUIToast.java 26 public static Toast makeText(Context context, @StringRes int resId, @Duration int duration) {
27 return makeText(context, context.getString(resId), duration);
30 public static Toast makeText(Context context, CharSequence text, @Duration int duration) {
31 Toast toast = Toast.makeText(context, text, duration);
  /developers/build/prebuilts/gradle/FingerprintDialog/kotlinApp/app/src/main/java/com/example/android/fingerprintdialog/
ActivityExtensions.kt 23 Toast.makeText(this, text, Toast.LENGTH_LONG).show()
  /developers/build/prebuilts/gradle/JobScheduler/kotlinApp/app/src/main/java/com/example/android/jobscheduler/
ActivityExtensions.kt 26 Toast.makeText(this, text, Toast.LENGTH_SHORT).show()
  /developers/samples/android/background/JobScheduler/kotlinApp/app/src/main/java/com/example/android/jobscheduler/
ActivityExtensions.kt 26 Toast.makeText(this, text, Toast.LENGTH_SHORT).show()
  /developers/samples/android/security/FingerprintDialog/kotlinApp/app/src/main/java/com/example/android/fingerprintdialog/
ActivityExtensions.kt 23 Toast.makeText(this, text, Toast.LENGTH_LONG).show()
  /frameworks/base/tests/VoiceEnrollment/src/com/android/test/voiceenrollment/
TestEnrollmentActivity.java 69 Toast.makeText(
73 Toast.makeText(this, "Failed to enroll!!!" + modelUuid, Toast.LENGTH_SHORT).show();
84 Toast.makeText(this, "Sound model not found!!!", Toast.LENGTH_SHORT).show();
89 Toast.makeText(this, "Successfully un-enrolled, model UUID=" + soundModel.uuid,
93 Toast.makeText(this, "Failed to un-enroll!!!", Toast.LENGTH_SHORT).show();
104 Toast.makeText(this, "Sound model not found!!!", Toast.LENGTH_SHORT).show();
114 Toast.makeText(this, "Successfully re-enrolled, model UUID=" + updated.uuid,
118 Toast.makeText(this, "Failed to re-enroll!!!", Toast.LENGTH_SHORT).show();
  /development/samples/ShortcutDemo/launcher/src/com/example/android/pm/shortcutlauncherdemo/
Global.java 25 Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
  /frameworks/support/core/ktx/src/main/java/androidx/core/widget/
Toast.kt 31 return Toast.makeText(this, text, duration).apply { show() }
41 return Toast.makeText(this, resId, duration).apply { show() }
  /external/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/eventhandlingadvanced/
AdvancedEventHandlingActivity.java 42 Toast.makeText(getApplicationContext(), "Single tap: " + ((int)sCoord.x) + ", " + ((int)sCoord.y), Toast.LENGTH_SHORT).show();
44 Toast.makeText(getApplicationContext(), "Single tap: Image not ready", Toast.LENGTH_SHORT).show();
52 Toast.makeText(getApplicationContext(), "Long press: " + ((int)sCoord.x) + ", " + ((int)sCoord.y), Toast.LENGTH_SHORT).show();
54 Toast.makeText(getApplicationContext(), "Long press: Image not ready", Toast.LENGTH_SHORT).show();
61 Toast.makeText(getApplicationContext(), "Double tap: " + ((int)sCoord.x) + ", " + ((int)sCoord.y), Toast.LENGTH_SHORT).show();
63 Toast.makeText(getApplicationContext(), "Double tap: Image not ready", Toast.LENGTH_SHORT).show();
  /development/apps/PushApiAuthenticator/src/com/example/android/pushapiauthenticator/
MainActivity.java 75 Toast.makeText(getApplicationContext(), "Hit the GET Button!", Toast.LENGTH_SHORT);
76 final Toast enterPackageName = Toast.makeText(getApplicationContext(),
79 Toast.makeText(getApplicationContext(), "Choose an Account!", Toast.LENGTH_SHORT);
81 Toast.makeText(getApplicationContext(), "Choose an Option!", Toast.LENGTH_SHORT);
154 Toast.makeText(
162 Toast.makeText(
170 Toast.makeText(
176 Toast.makeText(getApplicationContext(),
183 Toast.makeText(getApplicationContext(),
192 Toast.makeText(getApplicationContext()
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/car/
CarDockActivity.java 36 Toast.makeText(this, "CAR_DOCK app started from entering car mode!",
48 Toast.makeText(this, "CAR_DOCK app started from home button press!",
  /developers/build/prebuilts/gradle/Camera2Basic/kotlinApp/Application/src/main/java/com/example/android/camera2basic/
ActivityExtensions.kt 33 runOnUiThread { Toast.makeText(this, text, Toast.LENGTH_SHORT).show() }
  /developers/samples/android/media/Camera2Basic/kotlinApp/Application/src/main/java/com/example/android/camera2basic/
ActivityExtensions.kt 33 runOnUiThread { Toast.makeText(this, text, Toast.LENGTH_SHORT).show() }
  /development/samples/ReceiveShareDemo/src/com/example/android/receiveshare/
ReceiveShareService.java 41 Toast.makeText(ReceiveShareService.this, R.string.preparing_to_process_share,
56 Toast.makeText(ReceiveShareService.this, text, Toast.LENGTH_LONG).show();
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
ToastTest.java 18 Toast toast = Toast.makeText(new Activity(), "short toast",
26 Toast toast = Toast.makeText(new Activity(), "long toast",
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowToastTest.java 19 Toast toast = Toast.makeText(RuntimeEnvironment.application, "short toast", Toast.LENGTH_SHORT);
26 Toast toast = Toast.makeText(RuntimeEnvironment.application, "long toast", Toast.LENGTH_LONG);
33 Toast toast = Toast.makeText(RuntimeEnvironment.application, "short toast", Toast.LENGTH_SHORT);
44 Toast toast = Toast.makeText(RuntimeEnvironment.application, "short toast", Toast.LENGTH_SHORT);
54 Toast toast = Toast.makeText(RuntimeEnvironment.application, "short toast", Toast.LENGTH_SHORT);
73 Toast toast = Toast.makeText(RuntimeEnvironment.application, "short toast", Toast.LENGTH_SHORT);
81 Toast toast = Toast.makeText(RuntimeEnvironment.application, "short toast", Toast.LENGTH_SHORT);
90 Toast toast = Toast.makeText(RuntimeEnvironment.application, "short toast", Toast.LENGTH_SHORT);
  /developers/build/prebuilts/gradle/AppShortcuts/app/src/main/java/com/example/android/appshortcuts/
Utils.java 29 Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
  /developers/samples/android/system/AppShortcuts/app/src/main/java/com/example/android/appshortcuts/
Utils.java 29 Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
  /development/samples/ApiDemos/src/com/example/android/apis/app/
AppUpdateReceiver.java 32 Toast.makeText(context, R.string.app_update_received, Toast.LENGTH_SHORT).show();
AppUpdateSspReceiver.java 31 Toast.makeText(context, msg, Toast.LENGTH_SHORT).show();
OneShotAlarm.java 39 Toast.makeText(context, R.string.one_shot_received, Toast.LENGTH_SHORT).show();
RepeatingAlarm.java 37 Toast.makeText(context, R.string.repeating_received, Toast.LENGTH_SHORT).show();
  /development/samples/ShortcutSample/src/com/example/android/shortcutsample/
Utils.java 29 Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
  /development/samples/browseable/AppShortcuts/src/com.example.android.appshortcuts/
Utils.java 29 Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
  /packages/apps/Settings/src/com/android/settings/development/
DevelopmentSettingsDisabledActivity.java 29 Toast.makeText(this, R.string.dev_settings_disabled_warning, Toast.LENGTH_SHORT).show();

Completed in 591 milliseconds

1 2 3 4 5 6 7 8 91011>>