Top "Android-toast" questions

A Toast is a momentary popup in Android which provides simple feedback about an operation.

Can't create handler inside thread that has not called Looper.prepare()

What does the following exception mean; how can I fix it? This is the code: Toast toast = Toast.makeText(mContext, "…

android ui-thread android-toast
Can an Android Toast be longer than Toast.LENGTH_LONG?

When using setDuration() for a Toast, is it possible to set a custom length or at least something longer than …

android android-toast
How to create Toast in Flutter?

Can I create something similar to Toasts in Flutter? Just a tiny notification window that is not directly in the …

flutter dart toast android-toast
How can I change default toast message color and background color in android?

I want to create a toast message with background color is white and message color is black. My toast message …

android android-toast
How to display Toast at center of screen

In Android I want to display a toast message at the bottom of the screen, I tried this: Toast.makeText(…

android android-toast
Android - Snackbar vs Toast - usage and difference

We have been using just Toasts in our application so far and as we are planning to adopt some new …

android difference android-toast android-snackbar
How can I show a toast for a specific duration?

This is the way I have to show the Toast for 500 milliseconds. Though, it's showing more than a second. Toast.…

android toast android-toast
Adding image to Toast?

Is it possible to programmatically add an image to a toast popup?

android android-toast
How to avoid a Toast if there's one Toast already being shown

I have several SeekBar and onSeekBarProgressStop(), I want to show a Toast message. But if on SeekBar I perform the …

android android-toast