I have the following code:
headerNavigationLeft = new AccountHeader()
.withActivity(this)
.withCompactStyle(false)
.withThreeSmallProfileImages(true)
.withHeaderBackground(R.drawable.navigation)
.build();
navigationDrawerLeft = new Drawer()
.withActivity(this)
.withToolbar(mtoolbar)
.withDisplayBelowToolbar(false)
.withActionBarDrawerToggleAnimated(true)
.withDrawerGravity(Gravity.START)
.withSelectedItem(0)
.withActionBarDrawerToggle(true)
.withAccountHeader(headerNavigationLeft)
.build();
I would like to open the app when the Side menu is displayed without user action!
Is there any way to do it?