Add image to left side of action bar ?

3.3k views Asked by At

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

enter image description here

1

There are 1 answers

0
Vishwajit Palankar On BEST ANSWER

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