Reputation: 8529
I'm working on an Android app that will look like this (Photoshop mockup):
(source: gyazo.com)
The bar at the top will always be at the top and the view below that will always be the "header" of the content. Should I just load new views inside the ScrollView below the header or create entire new activities for each page so that the back button is supported better? And how would that work? Currently the main activity builds the above layout with a custom view for the header, top bar and content.
Upvotes: 2
Views: 640
Reputation: 48577
Should I just load new views inside the ScrollView below the header or create entire new activities for each page
We can't answer for sure, but you will most likely want to create new activities for each page.
Just include the header in your new activities as well. Google has a good example here http://code.google.com/p/iosched/
Upvotes: 3