I have an Activity which has an ActionBar but I need to change the icons on the ActionBar dynamically, I have a pause and a <
If you want to get the first item from your menu, **
use menu.getItem(0);
this Code woks perfectly :
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.my_menu, menu);
MenuItem m = menu.getItem(0);
m.setIcon(R.drawable.your_icon_here);
}
return true;
}