I’m using Actionbarsherlock and would like to display the up affordance icon without my app’s logo or icon display to the right of it.
I have tried the following.
getSupportActionBar().setDisplayShowHomeEnabled(false);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
The result of this is that my up affordance icon does not display either.
If I leave off
getSupportActionBar().setDisplayShowHomeEnabled(false);
then my up affordance icon displays, but it displays my app’s icon as well.
I ended up using a transparent png as I was unable to find a way to actually disable the icon programatically.