how to display html content in blackberry 4.6.1

224 views Asked by At

Possible Duplicate:
Embedded HTML control for Blackberry?

how to display html content in blackberry 4.6.1 any body help me thanks for any help

1

There are 1 answers

1
Karthika On

You can use BrowserField to display HTML content in BlackBerry like so:

BrowserField myBrowserField = new BrowserField();

myBrowserField.displayContent("<html><body><h1>Hello World!</h1></body></html>",
    "http://localhost");

Hope this will help you.