0

So I have an Activity which has a Static Array list of Array list of Strings which is accessed by the next activity. Now I don't want the next activity to be able to come back to this activity. Will finishing this activity get rid of that array list? If yes then please suggest a solution.

Phantômaxx
  • 37,901
  • 21
  • 84
  • 115
A Rogue Otaku
  • 913
  • 10
  • 20

1 Answers1

1

A possible solution is to create another class with static fields to hold data, these fields can be access through any other class to read/update

Denny
  • 1,766
  • 3
  • 17
  • 37