Android - 在 webview 中使用 Google pdf 查看器时出现问题
我看过很多关于在 Android Webview 中加载 PDF 的帖子。但我没有看到我得到的问题。
我正在使用 Google PDF 查看器在 Webview 中加载 URL,这将给出 PDF 作为响应。
我正在为我的 webview 设置以下属性,
mWebview.setWebViewClient(new WebViewClient());
mWebview.setVerticalScrollBarEnabled(false);
mWebview.getSettings().setJavaScriptEnabled(true);
Webview.getSettings().setDefaultZoom(ZoomDensity.MEDIUM);
String url = "http://docs.google.com/viewer?embedded=true&url=" + "my url";
mWebview.loadUrl(url);
我可以使用上面给定的代码加载 PDF。我遇到的问题是,
加载完整页面后,页面顶部和底部会不断插入空行。所以我的页面看起来像下面给出的那样。
empty line
empty line
empty line
....
pdf content
empty line
empty line
empty line
....
页面不断增加,并出现空行。
I have seen lot of threads about loading a PDF in Android Webview. But I didn't see the issue what I am getting.
I am using Google PDF viewer to load the URL in the Webview which will give a PDF as response.
I am setting the following properties to my webview
mWebview.setWebViewClient(new WebViewClient());
mWebview.setVerticalScrollBarEnabled(false);
mWebview.getSettings().setJavaScriptEnabled(true);
Webview.getSettings().setDefaultZoom(ZoomDensity.MEDIUM);
String url = "http://docs.google.com/viewer?embedded=true&url=" + "my url";
mWebview.loadUrl(url);
I am able load the PDF with the above given code. The issue I have is,
Once after loading the full page, a empty line is keep on getting inserted in top and bottom of page. So my page is looking like the one given below.
empty line
empty line
empty line
....
pdf content
empty line
empty line
empty line
....
The page is keep on increasing with empty lines.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只有谷歌有问题,现在我没有遇到这个问题,它工作正常。
There was something wrong with Google only, now I am not getting this issue, it works fine.