protected boolean keyChar(char arg0, int arg1, int arg2) {
if(arg0 == Keypad.KEY_ESCAPE ){
return true;
}else
return super.keyChar(arg0, arg1, arg1);
};
I still faced an issue loader screen closing on Blackberry button press.
So i overrided the onMenu method as
public boolean onMenu(int instance) {
if(instance==1073741824)
return super.onMenu(instance);
//returning false to intimate menu is not created
return false;
}
Finally solved...
No comments:
Post a Comment