Reputation: 1781
How can I implement such big logo in actionbar? Any ideas?
Upvotes: 2
Views: 590
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