I have realized one application with Android which contain two parts (activities)
1- Main activity receive GPs, calculate X,Y pixels on a Map
2- Showing/scrolling map after loading it from SD card.
The exchange between both activities is made every 20s by Intent and extras (X, Y plots on the Map)
All that is working properly.
The problem is each time i send intent I create a new Map and after many exchange the application crashes.
Is it possible to transfert data to one activity without creating new map? or other solution to modify OnCreate parameters of the second activity
Thank for help