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
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.
|
|
|
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.. |
|||
|
|
|
Yep, it's pretty easy actually... here's some code to determine if the keys are present:
|
|||
|
|

