public unsafe global::Com.Baidu.Mapapi.Map.TextOptions InvokeTypeface(global::Android.Graphics.Typeface p0)
 {
     if (id_typeface_Landroid_graphics_Typeface_ == IntPtr.Zero)
     {
         id_typeface_Landroid_graphics_Typeface_ = JNIEnv.GetMethodID(class_ref, "typeface", "(Landroid/graphics/Typeface;)Lcom/baidu/mapapi/map/TextOptions;");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         global::Com.Baidu.Mapapi.Map.TextOptions __ret = global::Java.Lang.Object.GetObject <global::Com.Baidu.Mapapi.Map.TextOptions> (JNIEnv.CallObjectMethod(Handle, id_typeface_Landroid_graphics_Typeface_, __args), JniHandleOwnership.TransferLocalRef);
         return(__ret);
     } finally {
     }
 }
 public unsafe global::Com.Baidu.Mapapi.Map.TextOptions InvokePosition(global::Com.Baidu.Mapapi.Model.LatLng p0)
 {
     if (id_position_Lcom_baidu_mapapi_model_LatLng_ == IntPtr.Zero)
     {
         id_position_Lcom_baidu_mapapi_model_LatLng_ = JNIEnv.GetMethodID(class_ref, "position", "(Lcom/baidu/mapapi/model/LatLng;)Lcom/baidu/mapapi/map/TextOptions;");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         global::Com.Baidu.Mapapi.Map.TextOptions __ret = global::Java.Lang.Object.GetObject <global::Com.Baidu.Mapapi.Map.TextOptions> (JNIEnv.CallObjectMethod(Handle, id_position_Lcom_baidu_mapapi_model_LatLng_, __args), JniHandleOwnership.TransferLocalRef);
         return(__ret);
     } finally {
     }
 }
 public unsafe global::Com.Baidu.Mapapi.Map.TextOptions InvokeExtraInfo(global::Android.OS.Bundle p0)
 {
     if (id_extraInfo_Landroid_os_Bundle_ == IntPtr.Zero)
     {
         id_extraInfo_Landroid_os_Bundle_ = JNIEnv.GetMethodID(class_ref, "extraInfo", "(Landroid/os/Bundle;)Lcom/baidu/mapapi/map/TextOptions;");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         global::Com.Baidu.Mapapi.Map.TextOptions __ret = global::Java.Lang.Object.GetObject <global::Com.Baidu.Mapapi.Map.TextOptions> (JNIEnv.CallObjectMethod(Handle, id_extraInfo_Landroid_os_Bundle_, __args), JniHandleOwnership.TransferLocalRef);
         return(__ret);
     } finally {
     }
 }
        public unsafe global::Com.Baidu.Mapapi.Map.TextOptions InvokeText(string p0)
        {
            if (id_text_Ljava_lang_String_ == IntPtr.Zero)
            {
                id_text_Ljava_lang_String_ = JNIEnv.GetMethodID(class_ref, "text", "(Ljava/lang/String;)Lcom/baidu/mapapi/map/TextOptions;");
            }
            IntPtr native_p0 = JNIEnv.NewString(p0);

            try {
                JValue *__args = stackalloc JValue [1];
                __args [0] = new JValue(native_p0);
                global::Com.Baidu.Mapapi.Map.TextOptions __ret = global::Java.Lang.Object.GetObject <global::Com.Baidu.Mapapi.Map.TextOptions> (JNIEnv.CallObjectMethod(Handle, id_text_Ljava_lang_String_, __args), JniHandleOwnership.TransferLocalRef);
                return(__ret);
            } finally {
                JNIEnv.DeleteLocalRef(native_p0);
            }
        }