public virtual unsafe void AddAnimation(global::Com.Baidu.Mapapi.Animation.Animation p0)
        {
            const string __id = "addAnimation.(Lcom/baidu/mapapi/animation/Animation;)V";

            try {
                JniArgumentValue *__args = stackalloc JniArgumentValue [1];
                __args [0] = new JniArgumentValue((p0 == null) ? IntPtr.Zero : ((global::Java.Lang.Object)p0).Handle);
                _members.InstanceMethods.InvokeVirtualVoidMethod(__id, this, __args);
            } finally {
            }
        }
 static void n_AddAnimation_Lcom_baidu_mapapi_animation_Animation_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
 {
     global::Com.Baidu.Mapapi.Animation.AnimationSet __this = global::Java.Lang.Object.GetObject <global::Com.Baidu.Mapapi.Animation.AnimationSet> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     global::Com.Baidu.Mapapi.Animation.Animation    p0     = global::Java.Lang.Object.GetObject <global::Com.Baidu.Mapapi.Animation.Animation> (native_p0, JniHandleOwnership.DoNotTransfer);
     __this.AddAnimation(p0);
 }
 static void n_SetInterpolator_Landroid_view_animation_Interpolator_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
 {
     global::Com.Baidu.Mapapi.Animation.Animation   __this = global::Java.Lang.Object.GetObject <global::Com.Baidu.Mapapi.Animation.Animation> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     global::Android.Views.Animations.IInterpolator p0     = (global::Android.Views.Animations.IInterpolator)global::Java.Lang.Object.GetObject <global::Android.Views.Animations.IInterpolator> (native_p0, JniHandleOwnership.DoNotTransfer);
     __this.SetInterpolator(p0);
 }
 static void n_SetDuration_J(IntPtr jnienv, IntPtr native__this, long p0)
 {
     global::Com.Baidu.Mapapi.Animation.Animation __this = global::Java.Lang.Object.GetObject <global::Com.Baidu.Mapapi.Animation.Animation> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     __this.SetDuration(p0);
 }
 static void n_SetAnimationListener_Lcom_baidu_mapapi_animation_Animation_AnimationListener_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
 {
     global::Com.Baidu.Mapapi.Animation.Animation __this = global::Java.Lang.Object.GetObject <global::Com.Baidu.Mapapi.Animation.Animation> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     global::Com.Baidu.Mapapi.Animation.Animation.IAnimationListener p0 = (global::Com.Baidu.Mapapi.Animation.Animation.IAnimationListener)global::Java.Lang.Object.GetObject <global::Com.Baidu.Mapapi.Animation.Animation.IAnimationListener> (native_p0, JniHandleOwnership.DoNotTransfer);
     __this.SetAnimationListener(p0);
 }
 static void n_Cancel(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Baidu.Mapapi.Animation.Animation __this = global::Java.Lang.Object.GetObject <global::Com.Baidu.Mapapi.Animation.Animation> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     __this.Cancel();
 }