How would I iterate over a collection with a different Activity to interact with each object within the collection?
For example if I have a survey collection (List maybe) full of question groups and questions, how would I have an Activity/layout for each question group and question given the fact that the questions within the collections are dynamically loaded?
You can use Activity.startActivityForResult(..) to start up the Intent and specify that you expect it to return something. To exit the Intents, just call
finish().