其他分享
首页 > 其他分享> > android – 选项菜单在某些设备上没有出现在Action Bar中

android – 选项菜单在某些设备上没有出现在Action Bar中

作者:互联网

我在操作栏中有一个选项菜单,它没有出现在某些具有硬件菜单按钮的设备上.尽管有硬件按钮,我必须让它出现在操作栏中…
我该怎么做?

解决方法:

把它放在你的onCreate方法中:

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) {
}

标签:android,android-optionsmenu
来源: https://codeday.me/bug/20190716/1476926.html