Hi,
I have implemented Blackberry port on my J2ME based application. I have written following code to invoke RIM APIs to open PopupScreen with native EditField.
private void showNativeEditField() {
final UiApplication uiApplication = UiApplication.getUiApplication();
uiApplication.invokeLater(new Runnable() {
public void run() {
popupScreen = new BlackBerryPopupScreen(textFieldWidget);
addEditFieldToPopupScreen();
uiApplication.pushModalScreen(popupScreen);
}
});
}
Now my problem is it works fine on all the Blackberry Phones except Storm. It is working fine on Storm Simulator but not on the actual device.
Does anybody tell me where am i wrong?
