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