Reputation: 919
I need add a image in between navigation button and drop-down in action-bar.How can I do this?
Upvotes: 4
Views: 3333
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