I am creating an app that has a slide menu..When you choose different options of the slide menu, you can do the following:
- Option 1: Upload a photo
- Option 2: Check all the uploaded photos
- Option 3: Check out all the nearby events
I am not sure if it is better to create a fragment that is created when an option is selected, or if an activity should be created if an option is selected..Please note, each option shows certain elements such as an autocomplete location box that are common to each other.
CUrrently I have created a Fragment with subfragments that are displayed as the user clicks on each option. In hindsight, I am not sure if having activities having fragments was a better option. Can someone tell me what's a better way in my case, and why?