As related to the new guidelines I replaced my standard menu with the actionbar. Due to consistent design I want to use the actionbar for all devices where it is possible to use the action bar. But there are a lot of devices which support actionbar and still have a menu button. How to handle this devices? I think it feels wront in some way, if the user clicks on the menu button and nothing happens. I know, that I can catch the button click but what to do then? How to react on this click? Is there some method/usual way to point the user's attention to the actionbar?
Asked
Active
Viewed 707 times
2 Answers
0
All of your action items, including overflow items, will appear when a user clicks the menu button. It's already taken care of.
The menu options will pop up from the bottom as if using the old-style menu.

dennisdrew
- 4,399
- 1
- 25
- 25
0
If you have overflow menu items, then the menu button will open the overflow menu. If you don't, then yes, the menu button will do nothing. I don't think that this behaviour is strange to users - there are many apps without menus. Otherwise, I suppose you could have your action bar or your menu items flash a different colour briefly. But this is by no means standard.

UgglyNoodle
- 3,017
- 1
- 21
- 17
-
"[...] I suppose you could have your action bar or your menu items flash a different colour briefly." - I hoped that there would be something like this already implemented. Or leastwise given through some kinf of guidelines. But if it isn't I think I'll keep on the given guidelines and don't implement something like that. Nonetheless, thanks for your helpful answer! – netblognet Oct 04 '12 at 20:13