public override View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.Inflate(Resource.Layout.timepicker_layout, container, false); // Find our View instances timeTextView = view.FindViewById <TextView>(Resource.Id.time_textview); Button timeButton = view.FindViewById <Button>(Resource.Id.time_button); mode24Hours = view.FindViewById <CheckBox>(Resource.Id.mode_24_hours); modeDarkTime = view.FindViewById <CheckBox>(Resource.Id.mode_dark_time); modeCustomAccentTime = view.FindViewById <CheckBox>(Resource.Id.mode_custom_accent_time); vibrateTime = view.FindViewById <CheckBox>(Resource.Id.vibrate_time); dismissTime = view.FindViewById <CheckBox>(Resource.Id.dismiss_time); titleTime = view.FindViewById <CheckBox>(Resource.Id.title_time); enableSeconds = view.FindViewById <CheckBox>(Resource.Id.enable_seconds); limitSelectableTimes = view.FindViewById <CheckBox>(Resource.Id.limit_times); disableSpecificTimes = view.FindViewById <CheckBox>(Resource.Id.disable_times); showVersion2 = view.FindViewById <CheckBox>(Resource.Id.show_version_2); view.FindViewById(Resource.Id.original_button).Click += (o, e) => { Calendar now = Calendar.Instance; new Android.App.TimePickerDialog( base.Activity, (object sender, Android.App.TimePickerDialog.TimeSetEventArgs arg) => { Log.Debug("Orignal", "Got clicked"); }, now.Get(CalendarField.HourOfDay), now.Get(CalendarField.Minute), mode24Hours.Checked ).Show(); }; timeButton.Click += (o, e) => { Calendar now = Calendar.Instance; /* * It is recommended to always create a new instance whenever you need to show a Dialog. * The sample app is reusing them because it is useful when looking for regressions * during testing */ if (tpd == null) { tpd = TimePickerDialog.NewInstance( this, now.Get(CalendarField.HourOfDay), now.Get(CalendarField.Minute), mode24Hours.Checked ); } else { tpd.Initialize( this, now.Get(CalendarField.HourOfDay), now.Get(CalendarField.Minute), now.Get(CalendarField.Second), mode24Hours.Checked ); } tpd.SetThemeDark(modeDarkTime.Checked); tpd.Vibrate(vibrateTime.Checked); tpd.DismissOnPause(dismissTime.Checked); tpd.EnableSeconds(enableSeconds.Checked); tpd.SetVersion(showVersion2.Checked ? TimePickerDialog.Version.Version2 : TimePickerDialog.Version.Version1); if (modeCustomAccentTime.Checked) { tpd.SetAccentColor("#9C27B0"); } if (titleTime.Checked) { tpd.Title = "TimePicker Title"; } if (limitSelectableTimes.Checked) { if (enableSeconds.Checked) { tpd.SetTimeInterval(3, 5, 10); } else { tpd.SetTimeInterval(3, 5, 60); } } if (disableSpecificTimes.Checked) { Timepoint[] disabledTimes = { new Timepoint(10), new Timepoint(10, 30), new Timepoint(11), new Timepoint(12, 30) }; tpd.SetDisabledTimes(disabledTimes); } //tpd.SetOnCancelListener(dialogInterface-> { // Log.d("TimePicker", "Dialog was cancelled"); // tpd = null; //}); tpd.Show(RequireFragmentManager(), "Timepickerdialog"); }; return(view); }