Hi all,
I'm developping an application to S60, more specific Nokia N81.
I need the app can be able to run in background.
So, I did the methods like that:
The app calls maximize method like that:Code:public void minimize() { paused=true; display.setCurrent(null); } public void maximize() { paused=false; display.setCurrent(myCanvas); }
However, when the app is maximized again, my Canvas nevermore calls paint method.Code:protected void startApp() { if (paused) { maximize(); } else { initApp(); } }
Is the code above correct?
Thanks!

Reply With Quote
I can offer you a 100% guarantee that this most certainly does not occur in many devices, including the majority of Nokia devices.

