I am trying to set custom icon for home icon using ActionBarSherlock library. I have tried to set custom layout using abHomeLayout attribute in my custom theme. But
abHomeLayout
This works for my situation, it replaces the default ic_launcher icon in the action bar with my custom one.
In your onCreate do this:
getSupportActionBar().setIcon(R.drawable.audio_shortcut);
Or in the manifest you can set the logo:
android:logo="@drawable/my_custom_logo" ...