Skip to content Skip to sidebar Skip to footer

Android - Should I Use Multiple Activities Or Multiple Content Views

i'm new with android. I'm working on an application using xml layouts. I wish to know which is better: 1. Use few activities and change its contentview 2. Use an activity for eac

Solution 1:

The general rule would be to use multiple activities. That's the way it's meant to be and you won't be breaking navigation (e.g. going to the previous "screen" by pressing back button).


Post a Comment for "Android - Should I Use Multiple Activities Or Multiple Content Views"