java ActionBar中具有硬件菜单按钮的设备上的强制选项菜单 - 来自http://stackoverflow.com/questions/26010876/options-menu-d

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java ActionBar中具有硬件菜单按钮的设备上的强制选项菜单 - 来自http://stackoverflow.com/questions/26010876/options-menu-d相关的知识,希望对你有一定的参考价值。

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

以上是关于java ActionBar中具有硬件菜单按钮的设备上的强制选项菜单 - 来自http://stackoverflow.com/questions/26010876/options-menu-d的主要内容,如果未能解决你的问题,请参考以下文章

FragmentActivity操作栏选项菜单

ActionBar的后退主页按钮无法使用片段

应用ActionBar中的返回按钮

手动打开 ActionBar 导航列表

java 更改硬件菜单按钮的行为,以显示/隐藏工具栏溢出菜单 - 来自http://stackoverflow.com/qu

FragmentActivity 操作栏选项菜单