I created a static Form in the MIDlet class :
public static Form lastForm = null;
Then I set it to the actual Form in every Form of my project :
if (!myMidlet.lastCanvas.isEmpty())
myMidlet.lastCanvas.clear();
myMidlet.lastForm = this;
Then in the startApp() I wrote :
public void startApp() {
...
if (lastForm != null)
lastForm.showBack();
else
{
new MainForm(this).show();
}
}
EDIT :
For the canvas :
In the MIDlet class :
public static Hashtable lastCanvas = new Hashtable();
In the canvas class ( constructor ) :
if (myMidlet.lastForm != null)
myMidlet.lastForm = null;
if (!myMidlet.lastCanvas.isEmpty())
myMidlet.lastCanvas.clear();
myMidlet.lastCanvas.put(new String("Form"), this);
And in the startApp() :
public void startApp() {
VKBImplementationFactory.init();
Display.init(this);
if (lastForm != null)
lastForm.showBack();
else if (!lastCanvas.isEmpty())
{
javax.microedition.lcdui.Display.getDisplay(this).setCurrent((Canvas)lastCanvas.get(new String("Form")));
}
else
new MainForm(this).show();
}
I think this approach of using a HashTable will work even for any lcdui Form.
public static com.sun.lwuit.Form lastForm = null;and in the constructor of a Form I make :myMidlet.lastForm = this;. Then in thepauseApp()I code :lastForm.showBack();but the main Form is always shown ! The last Form is shown just a fraction of a second but the main Form is then opened ! – pheromix Dec 20 '11 at 7:49