2010-11-09 27 views
0

Le code ci-dessous peut-il provoquer un problème s'il a été appelé à partir de la méthode d'exécution d'un objet MenuItem? Mon souci est de savoir si le MenuItem fait partie du thread UiEvent et s'il pourrait y avoir des effets secondaires.Blackberry Navigation dans l'écran à partir de MenuItem

//Allow back and forward navigation 
    void openScreen(eSafeScreen nextScreen) { 
     //remains on current screen if next screen does not exists 
     if (nextScreen != null) { 
      nextScreen._prevScreen = this; 
      UiApplication.getUiApplication().pushScreen(nextScreen); 
      UiApplication.getUiApplication().popScreen(this); 
     } 
    } 

Répondre