最佳答案
你可以使用ViewConfiguration.get(context).hasPermanentMenuKey()
仅适用于API级别14+
更多信息here和here
最好的答案是this
boolean hasMenuKey = ViewConfiguration.get(context).hasPermanentMenuKey();
boolean hasBackKey = KeyCharacterMap.deviceHasKey(KeyEvent.KEYCODE_BACK);
if(!hasMenuKey && !hasBackKey) {
}