Just wondering what the best way to pass an array list of GeoCodes is?
I can seem to put the arraylist into the intent okay using
saveRouteIntent.putExtra("waypoints", waypoints);
But I cant see how I would get the list in the new activity.
I could build two double arraylists and pass them across and then create the geocode array list again on the other side but im assuming there is a better method?