I have a custom android action bar with a custom layout view and style. I need to show the 'Home As Up' Button for my navigation drawer. The problem is that the button is not showing up in my custom layout style. I need the android default home as up icon so that I may have a default navigation drawer icon. (The icon which has the animation of the navigation drawer opening and closing).
Now I tried doing
getActionBar().setDisplayHomeUpAsEnabled(true);
getActionBar().setHomeButtonEnabled(true)
But the home button does not show up. Can anyone tell my how to implement the default home button on the custom actionbar?