Does anybody know how to remove this annoying blue glow that surrounds action bar menu item that is pressed?
Yes, you can overwrite ...
android:actionBarItemBackground
... that defines a drawable resource for each action item's background. E.g.
Check the documentation here.
Note: if you want to support Android versions with API level less than 14 you have to include the support package and ActionBarSherlock (ABS) in your app. Afterwards you need to set the background for both - Android standard and ABS:
Instead of a drawable you could also use a color, e.g.:
- @color/myColorDefinition
p.s. ... or best, use a state drawable: