void ShowAlertAction(DialogInterface w)
 {
     AndroidNativeFunctions.ShowToast(w.ToString());
 }
 void ShowAlertInputAction(DialogInterface w, string t)
 {
     AndroidNativeFunctions.ShowToast(w.ToString() + " " + t);
 }
 // This is not my code, warpped in a try catch incase something fails
 void ShowAlertAction(DialogInterface w)
 {
     try {
         AndroidNativeFunctions.ShowToast(w.ToString());
     } catch (System.Exception) { }
 }