Iām writing a app for the blackberry and would like to call up the built in browser, can you do this?
Asked
Active
Viewed 249 times
0
-
Do you mean to just launch it? ā Swati May 17 '11 at 18:33
-
Already asked and answered: http://stackoverflow.com/questions/614526/blackberry-launch-native-web-browser ā gnuf May 17 '11 at 20:00
1 Answers
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