Although Snackbar
is beautiful, it doesn\'t persist when changing activities. This is a bummer in scenarios where I would like to confirm that a message was sen
If I understand correctly, you do this:
You can use SnackBar to do that by using an ActivityResult (here is a StackOverflow post with how to use it)
Here are the steps:
This allow you do display a Snackar in Activity A corresponding to result of Activity B.
Hopes it can helps your problem