Hide Toast on Android
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
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.