Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to check programatically what are the external keys present on my android device (eg volume keys , Power keys , Menu key). Different devices might have different external keys hence wanted to know if there is a way to determine the external keys present on a device. If thats not possible are there different API's to determine if the device has a external Volume up / Down key , Power key, Camera key

share|improve this question

2 Answers

For most of your hardware features/sensors you can find useful constants in the PackageManager class.

Specifically for a hardware menu key, you would need to use the ViewConfiguration class and it's hasPermanentMenuKey() method.

And I haven't been able to find anything on detecting hardware volume keys..

share|improve this answer

Yep, it's pretty easy actually... here's some code to determine if the keys are present:

boolean hasCameraKey = KeyCharacterMap.deviceHasKey(KeyEvent.KEYCODE_CAMERA);
boolean hasVolumeKeys = KeyCharacterMap.deviceHasKey(KeyEvent.KEYCODE_VOLUME_UP)
                        && KeyCharacterMap.deviceHasKey(KeyEvent.KEYCODE_VOLUME_DOWN);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.