I'm just starting work on an Android app that uses several screens, where you're basically drilling down a tree of data, and each level is a listview.
I suppose I could do this with separate activities for each screen, or just 1 activity where I show/hide various panels.
Is there a "proper" way to do this? Any particular trade-offs for using activities vs. panels?
(Eventually I'd like to add the well-known "slide right/left" effect as I drill up and down. Does that affect the activity/panel decision as well?)
Any help much appreciated!
I suppose I could do this with separate activities for each screen, or just 1 activity where I show/hide various panels.
Is there a "proper" way to do this? Any particular trade-offs for using activities vs. panels?
(Eventually I'd like to add the well-known "slide right/left" effect as I drill up and down. Does that affect the activity/panel decision as well?)
Any help much appreciated!