Problem in exiting the midlet
Hi all,
I am working on a mobile application that has four midlets. From within any of them when I call the exit, I need to go back to the screen showing the four midlets. But when I exit, the entire application closes and goes back to the home screen of the mobile.
I am using
public void exitMIDlet() {
getDisplay().setCurrent(null);
destroyApp(true);
notifyDestroyed();
}
to exit the midlet. I tried with destroyApp(false) also but still the problem remains...
Any help please...

