Hi
I´m trying to populate events into a calendar when changing the month on xamarin.android. In order to know what days are shown in the calendar I take the VisibleDates Min and Max from the event args. This works fine while swiping or navigation left or right.
The visible dates matches the displayed dates.
But they do not match when I change the ViewMode and than select a different month. In this case the following is happening.
So let´s say we are displaying the days of the current month, and then click the month lable and select january of the current year. I get a MonthChanged event with the following args
((MonthChangedEventArgs) args).NewValue = 1/1/2019
e.VisibleDates.First() == 11/1/2019
e.VisibleDates.Last() == 1/11/2020
so the VisibleDates do not match the changed month. Is there any event that i can subscribe to that notifies me if VisibleDates changed? If not is there any way to get the correct VisibleDates from a given Month so i can load the correct CalendarInlineEvents?
Or is this a Bug that get´s fixed?
regards
Lars