08-01-2008 03:19 PM
Quote from the previous forums:
| ||||||||||
08-05-2008 01:40 AM
I was able to successfully end the call on a simulator using the EventInjector injecting the END key.
public void callIncoming(int callId){ EventInjector.KeyCodeEvent ev = new EventInjector.KeyCodeEvent(EventInjector.KeyCodeEv
ent.KEY_DOWN, ((char)Keypad.KEY_END), KeypadListener.STATUS_ALT, 500); EventInjector.invokeEvent(ev); }
I have never tested it on device
08-05-2008 09:44 AM