I searched many sites (stackoverflow as well) but couldn\'t understand how to implement the navigation drawer without the action bar. I know that this question has already b
Starting from the Sample Android NavigationDrawer app:
Create a button and in the clickListener call:
drawer.openDrawer(Gravity.LEFT);
Just add your DrawerLayout
like @mohan did, then if you have a button or something you tap on and want to open the drawer, just do like this :
drawer.openDrawer(Gravity.LEFT);
and to close :
drawer.closeDrawer(Gravity.LEFT);