I have developed a midlet suite which has 6 midlets and i have ported the midlet to nokia 6800 phone. The application works fine. I have problem in the midlet. in each of the midlet i am using an exit command to exit out of the midlet to the main application which contains all the middlets. But the exit command does 'nt work. The code below for the action for exit command is given below
if(label.equals("Exit")) {
destroyApp(true);
}
the destroyApp function is given below
public void destroyApp(boolean unconditional) {
notifyDestroyed();
}
I did'nt face this probelm on emulator. It is working perfectly on all emulators

Reply With Quote

