Here is the scenario..
There are 3 activities.. A1 (1st activity), A2 (2nd activity), A3 (3rd activity). In this case the flow of activities should be from A1-> A2 -> A3
In A1, I'm doing the intial data retrieval from the server and would like to send the data to 3rd Activity i.e. to A3 directly ( but i don't want to trigger A3 using A1 )
i.e . when the Activity A3 is launched from A2, i want to use the data sent by A1
The obvious solution (using plain java way) is using a common data structures like Hashmap/List/.. to insert the data from A1 and retrieve this data in A3. I would like to know if there is any other alternate solution using Android API
Thanks