Same Navigation Drawer in different Activities

If you want a navigation drawer, you should use fragments. I followed this tutorial last week and it works great: http://developer.android.com/training/implementing-navigation/nav-drawer.html You can also download sample code from this tutorial, to see how you can do this. Without fragments: This is your BaseActivity Code: public class BaseActivity extends Activity { public DrawerLayout drawerLayout; public ListView … Read more