• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Multiple Navigation Activities in App in different packages

ThomasGLu

Lurker
Is there any way to implement multiple navigation activities in an app to correspond with different sections?

I've tried to put them in different sections like so, but cannot create a second instance even in a different package.

Code:
java
|_ com.myapplication.businessapplication
   |_ employeetool
      |_ EmployeeNavigationActivity
   |_ managertool
      |_ ManagerNavigationActivity
|_ MainActivity

Basically, I want different classes of people to see different NavigationViews, and wanted the logic to be separated from each other.
 
Back
Top Bottom