The easiest way to launch a web browser from a BlackBerry application:
Browser.getDefaultSession().displayPage(URL);
Is there any reason why I would need to use Browser.getSession(UID)instead Browser.getDefaultSession()? What does this mean for the average use of opening a web browser, which is not in the default session, if all I'm worried about is showing the url?
source
share