Home
last modified time | relevance | path

Searched refs:showToast (Results 1 – 10 of 10) sorted by relevance

/developers/samples/android/background/JobScheduler/kotlinApp/app/src/main/java/com/example/android/jobscheduler/
DActivityExtensions.kt25 fun Activity.showToast(text: String) { in Activity() method
DMainActivity.kt139 showToast(getString(R.string.all_jobs_cancelled)) in cancelAllJobs()
153 showToast(getString(R.string.cancelled_job, id)) in finishJob()
155 showToast(getString(R.string.no_jobs_to_cancel)) in finishJob()
/developers/samples/android/media/Camera2Basic/kotlinApp/Application/src/main/java/com/example/android/camera2basic/
DActivityExtensions.kt32 fun FragmentActivity.showToast(text: String) { in FragmentActivity() method
DCamera2BasicFragment.kt536 activity.showToast("Failed") in createCameraPreviewSession()
646 activity.showToast("Saved: $file") in captureStillPicture()
/developers/samples/android/system/AppShortcuts/app/src/main/java/com/example/android/appshortcuts/
DUtils.java27 public static void showToast(Context context, String message) { in showToast() method in Utils
DShortcutHelper.java77 Utils.showToast(mContext, "Call to ShortcutManager is rate-limited"); in callShortcutManager()
81 Utils.showToast(mContext, "Error while calling ShortcutManager: " + e.toString()); in callShortcutManager()
/developers/samples/android/deprecated/wearable/wear/Geofencing/Application/src/main/java/com/example/android/wearable/geofencing/
DGeofenceTransitionsIntentService.java107 showToast(this, R.string.exiting_geofence); in onHandleIntent()
116 private void showToast(final Context context, final int resourceId) { in showToast() method in GeofenceTransitionsIntentService
/developers/samples/android/media/Camera2Video/kotlinApp/Application/src/main/java/com/example/android/camera2video/
DCamera2VideoFragment.kt356 showToast("Cannot access the camera.") in openCamera()
410 if (activity != null) showToast("Failed") in startPreview()
550 if (activity != null) showToast("Failed") in startRecordingVideo()
574 if (activity != null) showToast("Video saved: $nextVideoAbsolutePath") in stopRecordingVideo()
579 private fun showToast(message : String) = Toast.makeText(activity, message, LENGTH_SHORT).show() in showToast() method
/developers/samples/android/media/Camera2Basic/Application/src/main/java/com/example/android/camera2basic/
DCamera2BasicFragment.java356 private void showToast(final String text) { in showToast() method in Camera2BasicFragment
723 showToast("Failed"); in createCameraPreviewSession()
838 showToast("Saved: " + mFile); in captureStillPicture()
/developers/samples/android/media/Camera2Raw/Application/src/main/java/com/example/android/camera2raw/
DCamera2RawFragment.java569 showToast(sb.toString());
581 showToast("Capture failed!");
966 showToast("Failed to configure camera."); in createCameraPreviewSessionLocked()
1754 private void showToast(String text) {