How can i remove the leftmost navigation drawer menu item on the Android Toolbar. Basically i wan\'t to contain 4 images in a horizontal fashion, Nothing else !
My solution:
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout); ActionBarDrawerToggle toggle = new ActionBarDrawerToggle( this, drawer, toolbar, R.string.ACCEPT, R.string.CANCEL); drawer.setDrawerListener(toggle); toggle.syncState(); toggle.setDrawerIndicatorEnabled(false);