Xamarin.Forms 手势密码实现

Posted Devin.Zhou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Xamarin.Forms 手势密码实现相关的知识,希望对你有一定的参考价值。

Xamarin.Forms 手势密码实现

在前面的文章中,讲到了Xamarin.android、Xamarin.ios、UWP分别实现手势密码功能,现在我们在Xamarin.Forms中来实现这个功能。

  

原理和Xamarin.Android、Xamarin.iOS、UWP一样,关键就是如何使用ViewRenderer。

首先我们新建Xamarin.Forms项目:

在项目中创建GuestureLockView继承View(官方文档: 自定义Renderer)。

接下来分别在Android、iOS、UWP项目中创建GuestureLockViewRenderer

Android中 : GuestureLockViewRenderer继承ViewRenderer<GuestureLockView, Android.Views.View>

iOS中: GuestureLockViewRenderer继承ViewRenderer<GuestureLockView, UIView>

UWP中: GuestureLockViewRenderer继承ViewRenderer<GuestureLockView, CanvasControl>,CanvasControl需要在NuGet中安装Win2D库。

还需要在GuestureLockViewRenderer中重写protected override void OnElementChanged(ElementChangedEventArgs<GuestureLockView> e)方法。

protected override void OnElementChanged (ElementChangedEventArgs<GuestureLockView> e)
{
  base.OnElementChanged (e);

  if (Control == null) {
    // Instantiate the native control and assign it to the Control property with
    // the SetNativeControl method
  }

  if (e.OldElement != null) {
    // Unsubscribe from event handlers and cleanup any resources
  }

  if (e.NewElement != null) {
    // Configure the control and subscribe to event handlers
  }
}

控件在加载时,会调用该方法。原文如下说明:

An overridden version of the OnElementChanged method, in each platform-specific renderer class, is the place to perform the native control instantiation and customization. The SetNativeControl method should be used to instantiate the native control, and this method will also assign the control reference to the Control property.

然后就是在GuestureLockViewRenderer根据各个平台分别绘制图形,这样就能实现该需求了。

在这是实验中,恰巧遇到 Control为null的情况(UWP中),这时需要调用SetNativeControl方法初始化一个NativeControl。

 

if(Control == null)
{
    SetNativeControl(new CanvasControl());
}

 Github:https://github.com/devinZhou102/Plugin.GuestureLock

 Xamarin.Android手势密码:http://www.cnblogs.com/devin_zhou/p/8057243.html

 Xamarin.iOS手势密码:http://www.cnblogs.com/devin_zhou/p/8047313.html

Xamarin.UWP手势密码:http://www.cnblogs.com/devin_zhou/p/8052305.html

以上是关于Xamarin.Forms 手势密码实现的主要内容,如果未能解决你的问题,请参考以下文章

ScrollView 问题中的 Xamarin.Forms 捏手势

使用后台代码触发时,Xamarin.forms 将变量传递给点击手势

Xamarin.Forms 中附加属性的绑定问题

Xamarin.Forms 滑动手势识别器

如何在 Xamarin.Forms 的主页上禁用主页点击手势而不是其他页面?

Xamarin Forms - 在点击手势识别器上添加调用对象作为参数