Namespaces
Variants
Actions

How to send MIDlet to background

Jump to: navigation, search
SignpostIcon Asha UI.png
Article Metadata

Compatibility
Platform(s): MIDP
Device(s): Symbian

Article
Keywords: background, foreground, java, j2me
Created: Aleksi (03 Apr 2007)
Last edited: hamishwillee (27 Mar 2013)

This articles shows how to use setCurrent(null) to send a foreground application to the background - on Symbian.

Warning.png
Warning: On Series 40 phones this approach does not work.

The setCurrent(null) doesn't set the displayable to null but is used in Java ME implementations that support concurrent applications like Symbian to send the foreground application to background. The application that is shown is the last application that was shown before the MIDlet got activated. For example, if user launched the MIDlet from application shell just before then application shell is shown.

Following code can be used to send MIDlet to background:

Display display = Display.getDisplay(myMIDletClass);
display.setCurrent(null);

How to get it back

To get a background app back to the foreground, call setCurrent() with a Displayable. If you don't want to change the current Displayable, use:

display.setCurrent(display.getCurrent());
This page was last modified on 27 March 2013, at 03:04.
149 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved