I want to scroll up and down in a custom menu I have made using the trackball, but how do I receive and filter the trackball events? (I know how to process keyboard events using protected boolean keyChar(char key, int status, int time).)

link|improve this question

i believe navigation click and navigation movement will do that work for track ball.which other events u want?? – Swati Jan 25 '11 at 11:46
Navigation movement, I guess, maybe. But I just want events for when the user moves the trackball or trackwheel, since I do my own UI. – Amigable Clark Kant Jan 25 '11 at 12:21
feedback

1 Answer

up vote 2 down vote accepted

Your best bet is to use the navigationClick, navigationMovement and navigationUnclick methods in Field:

http://www.blackberry.com/developers/docs/4.2.1api/net/rim/device/api/ui/Screen.html#navigationMovement%28int,%20int,%20int,%20int%29

Or if you want to get the events before any of the fields do, override the same methods on the top-level Screen.

RIM strongly discourages the use of the old trackwheel API. Navigation is the way to go.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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