Is there a way how to detect if the user has access to the device BACK and MENU keys?
In ANDROID it's a simply code:
boolean hasMenuKey = ViewConfiguration.get(context).hasPermanentMenuKey();
boolean hasBackKey = KeyCharacterMap.deviceHasKey(KeyEvent.KEYCODE_BACK);
But how do it in DELPHI?