Mitch wrote: > Looks like maybe I need one manifest for all my application's > activities?
If you want to use an Intent like: new Intent(this, MyOtherActivity.class) then MyOtherActivity should be in the same project and has to be listed in that project's manifest. > Is there an option to create more than one project and > have an activity in each project and have one call the other? Sure. You have to craft an appropriate <intent-filter> for the second activity's manifest entry (in its own project and manifest) and you have to use an Intent that will trigger that Intent filter. And the user will have to have both applications installed (the one with your first activity and the one with the second activity). -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _The Busy Coder's Guide to *Advanced* Android Development_ Version 1.3 Available! -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en

