How to make the drawer layout be below the actionbar/toolbar? I\'m using v7:21 app compat library with the new ToolBar view.
Examples that I see looks like
Here is the Kotlin solution:
In the layout file containing your DrawerLayout...
android:keepScreenOn="true" to the DrawerLayoutandroid:layout_marginTop="?android:attr/actionBarSize" to the NavigationView The full XML piece should look like this:
That should do it (ignore my clipped nav drawer).