Alex Zaitsev
Alex Zaitsev

Reputation: 1781

Custom big logo in actionbar android

How can I implement such big logo in actionbar? Any ideas? enter image description here

Upvotes: 2

Views: 590

Answers (1)

williamj949
williamj949

Reputation: 11316

You can use ActionBar.setLogo() for runtime. Two versions are there setLogo(int resId) and setLogo(Drawable logo).

Read Define custom Logo for ActionBar (different than Logo) in XML? which will help you to define some styles also.

Upvotes: 2

Related Questions