Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Embedded HTML control for Blackberry?

Tags:

Is there any api for viewing html content from w/in your blackberry application? To be clear, I don't mean launching the browser on top of my app to view a page. But rather rendering the page w/in my app.

like image 384
Gordon Wilson Avatar asked Jan 06 '09 20:01

Gordon Wilson


1 Answers

Yes. Check out the net.rim.device.api.browser.field package or the Blackberry Browser section of application integration.

Everything sort of finishes here:

Field field = browserContent.getDisplayableContent();

See:
JDE 4.0.0 API for the package
RIM app integration guide

Signed only api, as usual.

like image 51
Richard Campbell Avatar answered Sep 30 '22 17:09

Richard Campbell