Hi There, Ive ported an Blackberry 4.6.0 application over to the storm on 4.7.0. All is working fine apart from the touch events i'm trying to control. I trap touch events in the method below which does as its supposed to but the problem is after my logic in the touchEvent executes and return the Menu (thats activated via menu button) is always displayed. I've tried returning false, true and super.touchEvent(message) but it still appears.
Any ideas of how I can prevent the Menu from appearing after trapping touch event?
protected boolean touchEvent(TouchEvent message)
{
if (message.getEvent() == TouchEvent.CLICK)
{
//My code here
}
}
Your thoughts are much appreciated