I want to remove the small navigation drawer icon and open the left panel on actionbar icon click. How can I do this?
Actually I'm creating an Actionbar like Pinterest's
I want to remove the small navigation drawer icon and open the left panel on actionbar icon click. How can I do this?
Actually I'm creating an Actionbar like Pinterest's
If you want to get rid of the
DrawerLayout
indicator don't use theActionBarDrawerToggle
. To toggle theDrawerLayout
when you select theActionBar
home affordance callDrawerLayout.openDrawer
andDrawerLayout.closeDrawer
depending on the current state.Also, from what I can tell Pinterest doesn't use a
DrawerLayout
.