Handles MIDlet background requests.
If the MIDlet is the foreground MIDlet, then forward the request
to the native layer to the system can show the native foreground
selector to the user.
MIDletProxy foreground = midletProxyList.getForegroundMIDlet();
if (midlet == foreground) {
/*
* Normal MVM mode case,
* Let the user choose the next foreground using the native GUI.
*/
forwardBackgroundRequest(midlet.getExternalAppId());
}
// don't change the foreground
return foreground;