I'm having some trouble and head-banging for a while now. The app I'm working on is GPS based together with Google Maps embedded. I can place a pin when tap on any place of the map and what I need is when I reopen the app to see all pins placed already.
I thought about using SharedPreferences
(method for saving and method for loading back) but since the pins are saved in ArrayList<Overlay>
I don't really know how to retrieve it (only long, int, string, float, boolean are available).
Is there some other option of doing of this?
Please help.