I have an Inspection Form for an Android tablet that has 5 activity pages and approximately 30 button clicks. Each button click generates a TextView value which are then compiled at the end of the application to create a report.
My issue is this: is there any other way to maintain state between activities and to carry the data from all the activities to the report stage WITHOUT using Intent and Bundles.
I have read everything thing I can about Intent and Bundles and it seems to be an awkward way of doing things. Being a C++ programmer I am use to addresses and pointers to reach out and get any data value I want, even in some cases using global pointers to maintain state.
Having 30 buttons to create 30 Bundle variables (to which then need to be retrieve by a switch statement) seems overkill when you already have a button ID and a value saved to in a memory address in the application.
Any suggestions?
Regards,
Bob