@Override
public void onCreateOptionsMenu(Menu menu,MenuInflater inflater){
Log.d(\"Does\", \"get called\");
inflater.inflate(R.menu.menuItem
On Android 3.0 and higher, the options menu is considered to always be open when menu items are presented in the action bar. When an event occurs and you want to perform a menu update, you must call invalidateOptionsMenu() to request that the system call onPrepareOptionsMenu().
http://developer.android.com/guide/topics/ui/menus.html
To change particular item use: menu.findItem(R.id.your_item_id)