1

enter image description here

ActionBar overflow menu should always Visible.

ActionBar overflow menu should always Visible in the all Device regardless of having hardware menu or not.

Is it possible?

Swift
  • 829
  • 2
  • 12
  • 33
  • possible duplicate of http://stackoverflow.com/questions/9286822/how-to-force-use-of-overflow-menu-on-devices-with-menu-button – MalaKa Jan 23 '14 at 12:39

1 Answers1

0

You forgot to include android:showAsAction attribute in each item.

If you would want to show it always visible then include android:showAsAction="always" and if you don't then include android:showAsAction="never"

Paresh Mayani
  • 127,700
  • 71
  • 241
  • 295