如何在android中渲染pptx,word
Android webview 不支持 pptx、word mime 类型吗?ios UIWebView 也支持这一点,我也期待着同样的功能。我在网上搜索,找不到任何用于 ppt、word、xls 的第三方库。有任何单词吗?谢谢!
Does not the android webview support pptx,word mime types.Well the ios UIWebView does this and I was expecting the same.I searched the net,could not find any third party libraries for ppt,word,xls.Any word anybody?Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不。WebView 呈现 Web 内容。 PPTX 和 DOC 是 Microsoft 的专有文件格式,与 Web 没有特别关系。
。也许 Apple 拥有在 Web 组件中渲染非 Web 文件格式的专利。
我真诚地怀疑是否有一个库(即 JAR)可以实现这一点。有些应用程序可以呈现(和编辑)此内容,您可以使用
ACTION_VIEW
Intents
(具有正确的 MIME 类型)和ACTION_VIEW
轻松地将文件移交给这些应用程序代码>startActivity()。No. WebView renders Web content. PPTX and DOC are proprietary file formats from Microsoft that are not particularly related to the Web.
Perhaps Apple has a patent on rendering non-Web file formats in Web components.
I sincerely doubt that there is a library (i.e., JAR) for this. There are apps that render (and edit) this content, and you can hand off your files to those apps easily enough using
ACTION_VIEW
Intents
(with the right MIME type) andstartActivity()
.