views:

3

answers:

0

Hello, I am working on an app that will potentially have dozens of screens a user can access. Not all need to be active at any one time. I have a few main screens that are presented to the user and then depending on what they select, the app will need to present new screens.

From what I've read here it seems that the best practice is that each screen should be its own Activity. Also from what I've read so far I can't use an Activity that hasn't been declared in the manifest.

(1) Is there a limitation as to how many can be declared in the manifest? (2) Is there a way that the manifest could pull in information from another XML file so that the manifest file could be more readable? Sort or like using the in a layout file?

Thanks much! CB