1

下面的代码打开应用程序,浏览器加载并显示指定的 url。现在我想要的是浏览器在应用程序打开后在后台加载和运行。

public class start extends MainScreen {

    public start() {
        super();  // Call to super
        String url = ("http://www.google.com/");
        //A BrowserSession is created
        BrowserSession BS = Browser.getDefaultSession(); 
        BS.displayPage(url);
    }

    public boolean onClose() {
        System.exit(0);
        return true; // Close the system
    }
}
4

1 回答 1

0

在您调用UiApplication.getUiApplication().requestForeground()在浏览器中打开 url 后调用。

我不建议System.exit()在 UI 内调用。实际上,一旦关闭最后一个屏幕,UI 应用程序就会关闭。

于 2012-04-24T09:02:53.447 回答