Android - 在 webview 中使用 Google pdf 查看器时出现问题

发布于 2024-12-04 11:49:41 字数 707 浏览 0 评论 0原文

我看过很多关于在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故事和酒 2024-12-11 11:49:41

只有谷歌有问题,现在我没有遇到这个问题,它工作正常。

There was something wrong with Google only, now I am not getting this issue, it works fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文