In Android application, I have one request that aims to use one common Activity/screen in many screens or in overall of the application.
For example:
- Screen A contains screen common C (to get better sense, it contains of list of items) ==> during the working on A, C might be modified to have add/modify/remove any items.
- Now to to Screen B and in turn it contains screen C also. ==> request: C must be the same as one in A and the data is obviously the same.
One more request: it doesn't need to store the list items of C in the DB or in the preference since I thought the loading data phase can reduce the smoothly of the screen B or A at the first time. How's your opinion about this thinking?
Anybody has some ideas about this situation? I'm really appreciate so much.
Thanks, Tri.