Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hide Toast on Android

Tags:

android

toast

I am developing an application that uses system activity to add a contact to phone's memory. This external activity launches a Toast after saving the contact. Is there any possibility to get rid of it? It would be perfect if I could get a reference to it to call cancel() or cancel all queued Toasts. Is there any Toast manager?

like image 813
bart Avatar asked Jul 06 '10 12:07

bart


2 Answers

If you create a Toast message as explained in the documentations:

Toast toast = Toast.makeText(context, text, duration);

Now you can cancel the toast with toast.cancel see the documentation of the Toast class

like image 55
Janusz Avatar answered Sep 27 '22 18:09

Janusz


No. You could cancel the Toast if you had a reference to it but since it is created by a separate activity you can't access it.

like image 32
Robby Pond Avatar answered Sep 27 '22 17:09

Robby Pond