public static void ShowTimePicker(int hour, int minute, bool use24HrsFormat, DialogTheme theme) { RunOnUIThread("ShowTimePickerDialog", hour, minute, use24HrsFormat, (int)theme); }
public static void ShowPreloader(string title, string message, DialogTheme theme) { RunOnUIThread("ShowPreloaderDialog", title, message, (int)theme); }
public static void ShowAlertDialog(string title, string message, string positive, string neutral, string negative, DialogTheme theme) { RunOnUIThread("ShowAlertDialog", title, message, positive, neutral, negative, (int)theme); }
public static void ShowDatePicker(int day, int month, int year, DialogTheme theme) { RunOnUIThread("ShowDatePickerDialog", day, month, year, (int)theme); }
public static void ShowAlertDialog(string title, string message, string[] actions, DialogTheme theme) { RunOnUIThread("ShowAlertDialog", title, message, actions, (int)theme); }