I have a NativeActivity-based application that wants to receive trackball events.

According to the (sketchy) documentation, I should be receiving these via the struct android_app's onInputEvent() callback, the same as I do for key and motion events. However, I'm not getting any. Looking at the tracing the event gets sent to the glue layer but is apparently consumed by the call to AInputQueue_preDispatchEvent() in process_input(), and so never gets delivered to my application.

Has anyone gotten trackball events working with NativeActivity, and if so, how?

link|improve this question

36% accept rate
feedback

1 Answer

you can override onKeyDown() and use KEYCODE_DPAD_DOWN,KEYCODE_DPAD_LEFT,KEYCODE_DPAD_RIGHT,KEYCODE_DPAD_UP to handle all event . I was using it for a game on HTC desire device.

link|improve this answer
I want to do this in pure native for performance reasons. – David Given Sep 9 '11 at 11:28
Sorry, last comment posted while rushed: plus, I want to get at the trackball events before they get converted to dpad events, because I need the analogue control. – David Given Sep 9 '11 at 13:03
feedback

Your Answer

 
or
required, but never shown

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