下面的代码打开应用程序,浏览器加载并显示指定的 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
}
}