黑莓中的渲染应用程序类
Blackberry 中渲染应用程序类的用途是什么?
What is the purpose of the rendering application class in Blackberry?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
Blackberry 中渲染应用程序类的用途是什么?
What is the purpose of the rendering application class in Blackberry?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
首先,它是一个接口(@see http://www.blackberry.com/developers/docs/5.0.0api/net/rim/device/api/browser/field/RenderingApplication.html),它可以让您实现 HTML在各种应用程序中呈现(@see http://www.blackberry.com/developers/docs/5.0.0api/net/rim/device/api/browser/field/BrowserContent.html)
我个人曾使用它来渲染 RSS HTML 内容,以便在典型的字段中显示。
它允许您实现回调功能以从 HTML(图像等)收集资源并适当地呈现它们(如果您愿意)。
这当然是 5.0 及以下版本,因为我没有特权拥有 6.0 用户群,所以我无法评论过去的 5.0 :)
编辑:哦,是的,它还允许您处理 HTTP 事件(重定向等)
First, it is an Interface(@see http://www.blackberry.com/developers/docs/5.0.0api/net/rim/device/api/browser/field/RenderingApplication.html), it can allow you to implement HTML rendering in a variety of applications (@see http://www.blackberry.com/developers/docs/5.0.0api/net/rim/device/api/browser/field/BrowserContent.html)
I personally have used it to render RSS HTML content for display in a typical Field among other things.
It allows you to implement callback functionality to gather resources from the HTML (images, etc) and render them appropriately (if you desire).
This of course is the 5.0 and under version, as I have not been privileged to have a 6.0 user base so I cannot comment past 5.0 :)
edit: Oh yeah, it also allows you to handle HTTP events (redirects, etc)