i'm developing a aplication for blackberry and i want to display a simple webpage (for example www.google.com). i'm having troubles using the examples on the blackberry developer page, can anyone give me an example that work? i'm using Eclipse and net.rim.device.api.browser.field.* api. my blackberry's device OS is 4.6
Asked
Active
Viewed 868 times
1 Answers
0
Try this code :
BrowserSession visit = Browser.getDefaultSession();
visit.displayPage("http://www.google.com");

rupesh
- 420
- 2
- 19
-
thank you, rupesh, but i want to embed a browser in my app, and this code call the blackberry browser. – user388508 Jul 15 '10 at 17:30