如何在黑莓屏幕上渲染网页内容?

发布于 2024-12-09 15:15:01 字数 298 浏览 0 评论 0原文

过去我曾使用:

import net.rim.blackberry.api.browser.BrowserSession;

BrowserSession browserSession = Browser.getDefaultSession();
browserSession.displayPage("http://www.google.com");

为了打开新的网页。我想做的是在窗口本身中呈现网页内容。那就是我不希望显示 URL 地址栏。

这可能吗?我该如何做到这一点?

谢谢

In the past I have used:

import net.rim.blackberry.api.browser.BrowserSession;

BrowserSession browserSession = Browser.getDefaultSession();
browserSession.displayPage("http://www.google.com");

in order to open up new web pages. What I am trying to do is to render web content in the window itself. That is I do not want the URL address bar to show.

Is that even possible and how do I get about doing that?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我家小可爱 2024-12-16 15:15:01

要在应用程序内而不是在默认的 BB 浏览器中打开网页,您需要使用 BrowserField2。 BrowserSession 调用具有地址栏的默认浏览器。你无法隐藏它。这是 BrowserField示例代码

To open web pages within the application and not in default BB browser, you need to use BrowserField2. BrowserSession invokes default browser which has address bar. You can not hide it. Here is the BrowserField Sample Code

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文