tags:

views:

93

answers:

2

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?

A: 

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

Janusz
+2  A: 

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.

BrennaSoft
Thanks for your reply.
bart