我正在尝试在网页浏览中加载网址。该URL链接到网站上的pdf文件。我想在webview中显示这个pdf文件。出于某种原因,我只看到一个白色的屏幕而且pdf没有加载。
这是代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Android.App;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Android.Webkit;
namespace TrackandTrace.Droid
{
[Activity (Label = "PodActivity")]
public class PodActivity : Activity
{
public string PodUrl { get; set; }
protected override void OnCreate (Bundle bundle)
{
base.OnCreate (bundle);
SetContentView (Resource.Layout.PodLayout);
var PodWebView = FindViewById<WebView> (Resource.Id.webViewPod);
PodUrl = Intent.GetStringExtra ("PodUrlString" ?? "No Pod Data available");
PodWebView.Settings.AllowFileAccess = true;
PodWebView.Settings.JavaScriptEnabled = true;
PodWebView.Settings.BuiltInZoomControls = true;
PodWebView.LoadData (PodUrl);
PodWebView.SetWebViewClient (new PodWebViewClient ());
// Create your application here
}
private class PodWebViewClient : WebViewClient
{
public override bool ShouldOverrideUrlLoading (WebView view, string url)
{
view.LoadUrl (url);
return true;
}
}
}
}
答案 0 :(得分:2)
我发现了一种适合我的应用的方法,仍然在de“webView”中打开pdf。这是代码:
PodWebView.LoadUrl ("http://docs.google.com/viewer?url=" + PodUrl);
这不像IOS webview那样流畅,但这样你无论使用什么设备都可以打开它。
答案 1 :(得分:1)
我认为不可能在WebView中加载PDF。至少这是我从阅读有关同一问题的其他SO问题中获得的印象。
我个人会使用默认的PDF阅读器,如下所示:
var intent = new Intent(Intent.ActionView);
intent.SetDataAndType(uri, "application/pdf");
intent.SetFlags(ActivityFlags.ClearTop);
StartActivity(intent);
答案 2 :(得分:0)
您必须将此链接添加到您的pdf链接或只是录制下面的相同代码
WebView webview = FindViewById<WebView>(Resource.Id.webView1);
urlPdf = ("example of url");
WebSettings settings = webview.Settings;
settings.JavaScriptEnabled = true;
webview.LoadUrl("http://drive.google.com/viewerng/viewer?embedded=true&url=" + urlPdf);
并且在urlPDF“http://drive.google.com/viewerng/viewer?embedded=true&url=”
之前添加此链接非常重要