• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps How to save multiple bundles

I have developed an app that has multiple Activities so far. I wanted to simplify the screens for users so that they didn't have to navigate through menus / context menus to add information. Here is the layout:

Main Entry Activity (date, time, basic info, etc)
Notes Activity (enter unlimited notes for the specific main entry)
Media Activity (enter unlimited media for the specific main entry)

I have set it up to use gestures and Left-Right flings to navigate from the entry Activity, then to the notes Activity, then to the media Activity, and back again. However, I need to saved the bundle data on each Activity so that the data I have on each Activity is saved each time that it is created again (i.e. the user flings the screen from the Media, back to the Notes, then back to the entry Activity).

Any idea on the best way to do this? I have toyed with the idea of saving the bundles in the extras that I pass along with the intent, but I would have to save 2 bundles on the Media Activity (1 for the entry and 1 for the Notes).
 
Back
Top Bottom