I am developing an application which runs on both honeycomb and ice cream sandwich. I want my action bar not to have the icon but keep the "up/home" button.
I used:
getActionBar().setDisplayOptions(0, ActionBar.DISPLAY_SHOW_HOME);
This removes the action bar icon but keeps the "up" button on ice cream sandwich. But on honeycomb, it removes the "up" button as well.
Is there a way on honeycomb that allows me to keep the "up" button but get rid of the icon?