I am trying to activate the speaker-phone for an incoming call. I am able to accept the incoming call programatically through the EventInjector.KeyCodeEvent, but I am not able to turn on the speaker-phone with the KeyCodeEvent.
I registered with Phone listener through the following method.
Phone.addPhoneListener(instance);
then I try to activate the speaker in the callConnected
method as follows.
EventInjector.KeyCodeEvent speakerKeyDown =
new EventInjector.KeyCodeEvent(EventInjector.KeyCodeEvent.KEY_DOWN,
(char) Keypad.KEY_SPEAKERPHONE, KeypadListener.STATUS_NOT_FROM_KEYPAD);
EventInjector.KeyCodeEvent speakerKeyUp =
new EventInjector.KeyCodeEvent(EventInjector.KeyCodeEvent.KEY_UP,
(char) Keypad.KEY_SPEAKERPHONE, KeypadListener.STATUS_NOT_FROM_KEYPAD);
EventInjector.invokeEvent(speakerKeyDown);
EventInjector.invokeEvent(speakerKeyUp);
Try to use your code within a thread and use Thread.sleep(100) between the invoking of the key just like that.
Might this will work