Florian
Florian

Reputation: 2118

Display logo in Android 5 (Lollipop) in status bar

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

Answers (1)

Florian
Florian

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

Related Questions