Two Drawer Layouts from Same Side in Xamarin.Android
Jan 5, 2019
1 minute read
In one of the projects, client require to built a design where a secondary drawer will opened over already opened primary drawer.
As per Android Material Design guidelines its not recommended and its not implemented in android.support.v4.widget.DrawerLayout.
If we try to implement it in code like following, it throws exception, only one drawer can be shown.
To show both drawers from same side we need to extend the android.support.v4.widget.DrawerLayout to handle the navigation of secondary drawer over primary.