Hallo, I am new to Android development (and new to Java) and am trying to get my head around how to structure the code for an app.
The app I have in mind requires several set-up and informational screens leading to a round of arcade gameplay, then back to the set-up and information screens and so it continues. Starting with the set-up part. I'd like an initial screen with a number of buttons, each of which launch a secondary screen, where data can be viewed/entered. Each secondary screen has a 'back' button to save the entered data and return the user to the initial screen. Is it best to have a separate activity for the initial and each secondary screen and use startActivity on each initial screen button and secondary screen back button to navigate between them? Note: I only intend having a single depth of secondary screen so this simple navigation will be enough What about startActivityForResult? would that be better? if so, why - Frink P.S. I have loads more questions but thought it best to start with this one. If I'm missing something then please let me know! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

