我尝试找到在xamarin.forms上显示本地pdf文件的方法。 我找到了一个实现webview及其渲染的自定义实现的解决方案:pdf reader
主要代码是:
public class CustomWebView : WebView
{
public static readonly BindableProperty UriProperty = BindableProperty.Create<CustomWebView, string>(p => p.Uri, default(string));
public string Uri
{
get { return (string)GetValue(UriProperty); }
set { SetValue(UriProperty, value); }
}
}
渲染:
[assembly: ExportRenderer (typeof(CustomWebView), typeof(CustomWebViewRenderer))]
namespace DisplayPDF.iOS
{
public class CustomWebViewRenderer : ViewRenderer<CustomWebView, UIWebView>
{
protected override void OnElementChanged (ElementChangedEventArgs<CustomWebView> e)
{
base.OnElementChanged (e);
if (Control == null) {
SetNativeControl (new UIWebView ());
}
if (e.OldElement != null) {
// Cleanup
}
if (e.NewElement != null) {
var customWebView = Element as CustomWebView;
string fileName = Path.Combine (NSBundle.MainBundle.BundlePath, string.Format ("Content/{0}", WebUtility.UrlEncode (customWebView.Uri)));
Control.LoadRequest (new NSUrlRequest (new NSUrl (fileName, false)));
Control.ScalesPageToFit = true;
}
}
}
}
我的页面:
public class WebViewPageCS : ContentPage
{
public WebViewPageCS ()
{
webView = new CustomWebView
{
Uri = "ScalaReference.pdf",
HorizontalOptions = LayoutOptions.FillAndExpand,
VerticalOptions = LayoutOptions.FillAndExpand
};
}
但是现在我找不到像这篇文章所描述的那样为这个pdf文件添加锚点的方法:anchor to pdf
此外,我尝试将此代码用于评估脚本:
private async void Scroll_Clicked(object sender, EventArgs e)
{
webView.Eval($"window.scrollTo(0, {x});");
}
它可以使用默认的webview,但不适用于自定义的。
也许有人知道以任何其他方式滚动/设置锚点到pdf并通过xamarin.forms链接到这个锚点? 谢谢。
答案 0 :(得分:1)
它可以使用默认的webview,但不适用于自定义的。
这不是由自定义网页视图引起的,因为渲染器在Control
中为CustomWebViewRenderer
创建了一个新的UIWebview,请查看此代码部分:
if (Control == null) {
SetNativeControl (new UIWebView ());
}
因此,在执行webView.Eval($"window.scrollTo(0, {x});");
时它不起作用,因为此webview实际上不是UIWebview。
在CustomWebView中创建BindableProperty
public static readonly BindableProperty AnchorProperty = BindableProperty.Create<CustomWebView, float>(p => p.Anchor, default(float));
public float Anchor
{
get { return (float)GetValue(AnchorProperty); }
set { SetValue(AnchorProperty, value); }
}
在页面
中触发它private void Scroll_Clicked(object sender, System.EventArgs e)
{
webview.Anchor = 200;
}
在渲染器中获取值并使webview滚动。
protected override void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e)
{
base.OnElementPropertyChanged(sender, e);
if(e.PropertyName is "Anchor")
{
var customWebView = Element as CustomWebView;
float anchor = customWebView.Anchor;
Control.ScrollView.ContentOffset = new CoreGraphics.CGPoint(0, anchor);
}
}