Android Navigation Drawer on multiple Activities

android, java, navigation-drawer

Solution

For this just create a BaseActivity class that implements the drawer, and let all your other activities extend this one.

Problem

Is there a way to configure only one time the Navigation Drawer, and the display it on multiple Activites?

Original source

Related problems