I have to disable the home button in my android application. I have an Actionbar Sherlock and setting DisplayHomeAsUpEnabled
didn't work.
Here is my code:
ActionBar ab =getSupportActionBar();
ab.setDisplayHomeAsUpEnabled(false);
Thanks for your help!