-
Notifications
You must be signed in to change notification settings - Fork 116
Open
Description
···
// 判断设备是否有返回键、菜单键来确定是否有 NavigationBar
public static boolean hasNavigationBar(Context context) {
boolean hasMenuKey = ViewConfiguration.get(context).hasPermanentMenuKey();
boolean hasBackKey = KeyCharacterMap.deviceHasKey(KeyEvent.KEYCODE_BACK);
if (!hasMenuKey && !hasBackKey) {
return true;
}
return false;
}
···
按照这种做法,在华为手机5X上,并不能检测出来。
Metadata
Metadata
Assignees
Labels
No labels