05-12-2010 10:16 AM
Hello thorntech,
you made my day! In fact I have the same setup like you. Midlet+keylistener.
I had to additionally wrap the call in a thread in order to run it on 4.3 device:
UiApplication.getUiApplication().invokeLater(new Runnable() {
public void run() {
Invoke.invokeApplication(Invoke.APP_TYPE_MESSAGES, new MessageArguments(m));
}
});
What really is sad about blackberry people is that they completely ignor j2me developers. But the great thing about Blackberry is that it is so easy to develop a midlet and to tune it for Blackberry. No need to rewrite all the code and maintain 2 parallel applicatin. Unfortunatly I see RIM moving into that direction.
Cheers,
Toby