Reputation: 2118
Does anybody know if it is still possible to display a logo in the action bar on Android 5? It seems that using android:logo does not work anymore. I cannot find anything in the documentation about it.
Upvotes: 2
Views: 402
Reputation: 2118
After digging around, I found an answer. In order to display the logo in holo, you need to call both of the following methods:
actionBar.setDisplayUseLogoEnabled(true);
actionBar.setDisplayHomeAsUpEnabled(true);
Upvotes: 1