In the past I have used:
import net.rim.blackberry.api.browser.BrowserSession;
BrowserSession browserSession = Browser.getDefaultSession();
browserSession.displayPage("http://www.google.com");
in order to open up new web pages. What I am trying to do is to render web content in the window itself. That is I do not want the URL address bar to show.
Is that even possible and how do I get about doing that?
Thanks