I need to add an image between the navigation button and the drop down menu in action. How can i do this?
you need to call setIcon(), it will change the icon
setIcon()
getActionBar(); ActionBar actionBar = getActionBar(); actionBar.setIcon(R.drawable.my_icon);
see this for more details