My application requires users to hold down the trackball in order to access an advanced menu. Not all phones have a trackball, however, so I need to remove this requirement for such phones. Is there a way to detect if the phone has a trackball?

link|improve this question
feedback

1 Answer

up vote 4 down vote accepted

Use the Configuration object, specifically the navigation and navigationHidden fields. You can get a Configuration object via getResources().getConfiguration().

link|improve this answer
This isn't really an answer... HOW do the navigation and navigationHidden fields help?? – Rich Jun 22 '11 at 18:53
@Rich Presumably check if navigation is NAVIGATION_TRACKBALL (possibly allow NAVIGATION_DPAD too), indicating that a trackball (or D-pad) exists, and navigationHidden is not NAVIGATIONHIDDEN_YES, indicating that the trackball is not currently covered up by a folding/sliding mechanism. – Chris Boyle Oct 8 '11 at 23:16
feedback

Your Answer

 
or
required, but never shown

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