4

How to Change the left side menu icon on the Action Bar ? I have created this using Navigation Drawer Fragment in Android Studio. Now an Arrow pointing left is displayed "<-" but i need to display the = icon. Where should i change this ?

MainakChoudhury
  • 502
  • 1
  • 7
  • 23

2 Answers2

1

You could use this format for your ActionBarDrawerToggle:

mDrawerToggle = new ActionBarDrawerToggle(this, mDrawerLayout,
    R.drawable.CUSTOM_ICON, // Navigation menu toggle icon
    R.string.DRAWER_OPEN, // Navigation drawer open description
    R.string.DRAWER_CLOSE // Navigation drawer close description
    )

Change your drawable and make sure it is the same name as the one in the code.

Malwinder Singh
  • 6,644
  • 14
  • 65
  • 103
0

To toggle the indicator you've to use:

public void toogleDrawer(boolean value){
  mDrawerToggle.setDrawerIndicatorEnabled(!value);
  getSupportActionBar().setDisplayHomeAsUpEnabled(value);
}

Please post the complete code relating to your drawer fragment, and action bar setup(if any) and also the relevant layouts. You've to research around a bit before asking the question. Check this question here : Cannot listen clicks on up caret

Everyone can provide specific answers to your problem if you add more content to it.

Community
  • 1
  • 1
Gurupad Mamadapur
  • 989
  • 1
  • 13
  • 24