Skip to content

Instantly share code, notes, and snippets.

@messenger63
Created December 3, 2014 09:47
Show Gist options
  • Save messenger63/d3033fbbeea23ad50b71 to your computer and use it in GitHub Desktop.
Save messenger63/d3033fbbeea23ad50b71 to your computer and use it in GitHub Desktop.
Force show 3 dot overflow menu item on ActionBar
try {
ViewConfiguration config = ViewConfiguration.get(this);
Field menuKeyField = ViewConfiguration.class.getDeclaredField("sHasPermanentMenuKey");
if(menuKeyField != null) {
menuKeyField.setAccessible(true);
menuKeyField.setBoolean(config, false);
}
} catch (Exception e) {
e.printStackTrace();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment