-2

I'm trying to send data from an array list from one activity to another so that I can put it into a recycled view and display it I sadly don't have any code and I'm trying to find a nice headstart any ideas?

I've tried on a resume once but that did not work well

I'm trying to send data from an array list to a recycler view in another activity and display it.

Mayank Patel
  • 3,868
  • 10
  • 36
  • 59
GlitchyYeti
  • 25
  • 1
  • 8

1 Answers1

0
intent.putParcelableArrayListExtra("arrayListVenue",arrayListVenue);
intent.getParcelableArrayExtra("arrayListVenue");

Use this will work.