Display.getDisplay(midlet).setCurrent(((MidletName)midlet).MethodName());
в канве, когда вы хотите переключить свой код холста, вы набираете эту строку. И создайте Mehod в мидлете, после создания объекта canvas. Например:
Splash hitSplash;
private Canvas gameView=null;
startApp() {
hitSplash= new CanvasClass(this);
Display.getDisplay(this).setCurrent(hitSplash);
}
public Canvas getMenu1()
{
if (gameView!=null) gameView = null;
gameView = new CrackerWindow(this,getSplash());
System.gc();
return gameView;
}
private Splash getSplash()
{
return hitSplash;
}