How to update a menu item shown in the ActionBar?
Option #1: Try invalidateOptionsMenu(). I don’t know if this will force an immediate redraw of the action bar or not. Option #2: See if getActionView() returns anything for the affected MenuItem. It is possible that showAsAction simply automatically creates action views for you. If so, you can presumably enable/disable that View. I can’t seem to … Read more