Nuwan Indika
Nuwan Indika

Reputation: 919

Add image to left side of action bar ?

I need add a image in between navigation button and drop-down in action-bar.How can I do this?

enter image description here

Upvotes: 4

Views: 3333

Answers (1)

Vishwajit Palankar
Vishwajit Palankar

Reputation: 3103

you need to call setIcon() it will change the icon

getActionBar();
ActionBar actionBar = getActionBar();
actionBar.setIcon(R.drawable.my_icon);

see this for more detail

Upvotes: 2

Related Questions