我想控制 ICS 中溢出菜单的使用。我也参考了这个链接在我的 onCreateView() 中尝试了这段代码
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
}
请帮助我在哪里出错以及如何使用它。