作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 Google Docs gview 在我的 WebView 中加载 pdf。它正在加载查看器,但未显示 pdf 页面本身。我已经将这种技术用于其他项目(其他目标 url),没有任何问题,但我无法让 Google Docs Gview 页面使用它。我用
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
webview = (WebView) findViewById(R.id.webView1);
webview.getSettings().setJavaScriptEnabled(true);
webview.setWebViewClient(new MyWebViewClient());
HttpHelper httphelper = new HttpHelper();
String pdf = "https://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters.pdf";
String result = httphelper.GetPage(Uri.parse("https://docs.google.com/gview?embedded=true&url=" + pdf));
webview.loadDataWithBaseURL("https://docs.google.com", result, "text/html", "utf-8", "https://docs.google.com");
}
知道为什么这不适用于 gview 页面吗?
谢谢
最佳答案
mWebview.getSettings().setJavaScriptEnabled(true);
String strPdf="https://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters.pdf";
mWebview.loadUrl("https://docs.google.com/gview?embedded=true&url=" + strPdf);
关于java - 使用 Google Docs gview 在 webview 中加载 PDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9382310/
我正在尝试使用 Google Docs gview 在我的 WebView 中加载 pdf。它正在加载查看器,但未显示 pdf 页面本身。我已经将这种技术用于其他项目(其他目标 url),没有任何问题
我有 pdf 文件存储在 azure blob 服务中 this URL . 我可以通过浏览器从这个URL正常下载它。 现在我想使用 google gview 将此 pdf 嵌入到 html 页面中。
我是一名优秀的程序员,十分优秀!