-1

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?

Phantômaxx
  • 37,901
  • 21
  • 84
  • 115
Omkar Javeri
  • 65
  • 1
  • 7

2 Answers2

3

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.

josh_gom3z
  • 294
  • 1
  • 13
0

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.

Akhilesh Awasthi
  • 2,688
  • 4
  • 21
  • 30