我正在实现自定义ActionBar,我该如何处理溢出菜单(右边的3点图标:http://developer.android.com/images/ui/actionbar.png)?如果没有硬件菜单按钮,则应该可以看到溢出菜单 - 但是如何检测到它?
我没有使用系统ActionBar,因为我需要一个自定义的行为。
答案 0 :(得分:1)
ViewConfiguration.get(context).hasPermanentMenuKey()
答案 1 :(得分:0)
菜单按钮是somewhat outdated,也许您想重新考虑并坚持溢出菜单?顺便问一下,你知道http://actionbarsherlock.com/吗?
答案 2 :(得分:0)
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();
}
}