0

I’m writing a app for the blackberry and would like to call up the built in browser, can you do this?

Swati
  • 50,291
  • 4
  • 36
  • 53
Ted pottel
  • 6,869
  • 21
  • 75
  • 134

1 Answers1

0

If you are building a Midlet, use the platformRequest method to do this.

If you are building a blackberry app, you can use:

BrowserSession browser = Browser.getDefaultSession();
browser.displayPage(url);
Mugur
  • 1,019
  • 9
  • 21
  • Hi thank you for the help, it almost works. The first line has a yellow line under it saying Signature equred protected class. and the 2nd line is under line with a red, saying browser csannot be resolved. I'm using eclipse and saw a option for signe with signature tool, but it is greyed out. – Ted pottel May 18 '11 at 19:20