Android物理/电容导航按钮

时间:2016-01-22 08:55:59

标签: java android button navigation

如何检查设备enter image description here

上的屏幕或物理/电容导航按钮

1 个答案:

答案 0 :(得分:1)

您可以使用ViewConfiguration.get(context).hasPermanentMenuKey()

仅适用于API级别14 +

更多信息herehere

有帮助的最佳答案是this

boolean hasMenuKey = ViewConfiguration.get(context).hasPermanentMenuKey();
boolean hasBackKey = KeyCharacterMap.deviceHasKey(KeyEvent.KEYCODE_BACK);

if(!hasMenuKey && !hasBackKey) {

}