Android学习记录(五) 记录一下最近遇到的坑:android actionbar menu菜单无显示。

来源:互联网 发布:西门子s7200软件下载 编辑:程序博客网 时间:2024/05/22 15:58

这里搬运一下:

http://stackoverflow.com/questions/18010072/menu-items-are-not-showing-on-action-bar


8
down vote

I think you want to show the overflow menu icon on the top right always and want your menu to open from there. Try something like following to force it there:

Inside your onCreate() do:

  try {        ViewConfiguration config = ViewConfiguration.get(this);        Field menuKeyField = ViewConfiguration.class.getDeclaredField("sHasPermanentMenuKey");        if(menuKeyField != null) {            menuKeyField.setAccessible(true);            menuKeyField.setBoolean(config, false);        }    } catch (Exception ex) {        // Ignore    }

建议整篇读一下,非常不错~

0 0
原创粉丝点击