Another design question for you
If I have 5 activities that can result from one activity
A->B
A->C
A->E
…. Etc
And activity A has values that need to be passed to all other activites, then do you recommned passing them through intent or should I just have a global static variables in activity A and read the values in any other activity?
Thank you
Definitely don’t use static public variables.
You should use: