如何在黑莓屏幕上渲染网页内容?
过去我曾使用:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要在应用程序内而不是在默认的 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