开发者

how to display html content in blackberry 4.6.1 [duplicate]

开发者 https://www.devze.com 2023-02-11 02:33 出处:网络
This question already has answers here: 开发者_Python百科 Closed 10 years ago. Possible Duplicate: Embedded HTML control for Blackberry?
This question already has answers here: 开发者_Python百科 Closed 10 years ago.

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


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消