I'm currently using this code to hide the default back indicator and using a custom drawable:
actionBar.setDisplayHomeAsUpEnabled(false);
actionBar.setIcon(R.drawable.icon_actionbar_menu);
The result is that there's a space between the icon and the left up corner. I would like to remove this space and make the icon starting from the left side with no padding \ margin.
Any suggestions ?