Пример #1
0
 public static void ShowTimePicker(int hour, int minute, bool use24HrsFormat, DialogTheme theme)
 {
     RunOnUIThread("ShowTimePickerDialog", hour, minute, use24HrsFormat, (int)theme);
 }
Пример #2
0
 public static void ShowPreloader(string title, string message, DialogTheme theme)
 {
     RunOnUIThread("ShowPreloaderDialog", title, message, (int)theme);
 }
Пример #3
0
 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);
 }
Пример #4
0
 public static void ShowDatePicker(int day, int month, int year, DialogTheme theme)
 {
     RunOnUIThread("ShowDatePickerDialog", day, month, year, (int)theme);
 }
Пример #5
0
 public static void ShowAlertDialog(string title, string message, string[] actions, DialogTheme theme)
 {
     RunOnUIThread("ShowAlertDialog", title, message, actions, (int)theme);
 }