I have a button in an activity,on click
of that button I want to show the Snack bar
in my next activity.
I have tried adding it but the snackbar view lies in the same activity.
What should i do?
I have a button in an activity,on click
of that button I want to show the Snack bar
in my next activity.
I have tried adding it but the snackbar view lies in the same activity.
What should i do?
You should put the message to display in SnackBar
in the Intent
you use to start the next Activity
. Then, when the new Activity
start, you could get the message from the Intent
and display it in a SnackBar
from a View
in that Activity
.
Pass some parameter with intent to NextActivity on your button click in ActivityOne. In onCreate method of NextActivity check the paramter and if it verifies that the launch event was fired from that button click in ActivityOne, Show the SnackBar.