Is it possible to create and add to app Navigation Drawer without using xml?
Every example i saw had an additional xml file with layout.
Nowadays i try to initialize this with:
DrawerLayout sidePanel = new DrawerLayout(this);
and then add this sidePanel using View method addView() but it cause exception.
Is it possible to add Navigation Drawer using only java code?