public unsafe void UnRegisterLocationListener(global::Com.Amap.Api.Location.IAMapLocationListener p0)
        {
            if (id_unRegisterLocationListener_Lcom_amap_api_location_AMapLocationListener_ == IntPtr.Zero)
            {
                id_unRegisterLocationListener_Lcom_amap_api_location_AMapLocationListener_ = JNIEnv.GetMethodID(class_ref, "unRegisterLocationListener", "(Lcom/amap/api/location/AMapLocationListener;)V");
            }
            JValue *__args = stackalloc JValue [1];

            __args [0] = new JValue((p0 == null) ? IntPtr.Zero : ((global::Java.Lang.Object)p0).Handle);
            JNIEnv.CallVoidMethod(((global::Java.Lang.Object) this).Handle, id_unRegisterLocationListener_Lcom_amap_api_location_AMapLocationListener_, __args);
        }
        public virtual unsafe void UnRegisterLocationListener(global::Com.Amap.Api.Location.IAMapLocationListener p0)
        {
            const string __id = "unRegisterLocationListener.(Lcom/amap/api/location/AMapLocationListener;)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_UnRegisterLocationListener_Lcom_amap_api_location_AMapLocationListener_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
 {
     global::Com.Amap.Api.Location.ILocationManagerBase  __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Location.ILocationManagerBase> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     global::Com.Amap.Api.Location.IAMapLocationListener p0     = (global::Com.Amap.Api.Location.IAMapLocationListener)global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Location.IAMapLocationListener> (native_p0, JniHandleOwnership.DoNotTransfer);
     __this.UnRegisterLocationListener(p0);
 }
 static void n_OnLocationChanged_Lcom_amap_api_location_AMapLocation_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
 {
     global::Com.Amap.Api.Location.IAMapLocationListener __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Location.IAMapLocationListener> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     global::Com.Amap.Api.Location.AMapLocation          p0     = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Location.AMapLocation> (native_p0, JniHandleOwnership.DoNotTransfer);
     __this.OnLocationChanged(p0);
 }