I'm trying to do a long press on a calendar day cell to push to another activity. So far, I have the long click working:
RadCalendarView calendarControl;calendarControl.SetOnLongClickListener(new SelectedDateLongPress());class SelectedDateLongPress : Java.Lang.Object, RadCalendarView.IOnLongClickListener { public bool OnLongClick(View view) { RadCalendarView cal = (RadCalendarView)view; cal.OnSelectedDatesChangedListener = new SelectedDateChangedListener(); Alert_Handler.ShowErrorAlert("Long Press", "Long Press Alert", view.Context, ApplicationVariables.MainActivity); return false; } }
How do I get the new date on the cell pressed? This seems to fire before the selected date is changed