You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the calendar is initialized with a big range of time, say 20 years, it will cost 3+ seconds to finish rendering. However, it only takes 1+ seconds to load in original implementation.
So far, I found out that OnMeasure method in CalendarRowView, CalendarGridView is actually the performance hit compared to its original works.
I thought the slowness would be related to that I was using objects under Java.Util.* package. However, after I have converted all those objects to C# flavored DateTime type, the problem still exists.
Any suggestions are welcome. OnMeasure is part of Mono for Android framework. I am not sure if the problem is related to the framework.
The text was updated successfully, but these errors were encountered:
If the calendar is initialized with a big range of time, say 20 years, it will cost 3+ seconds to finish rendering. However, it only takes 1+ seconds to load in original implementation.
So far, I found out that
OnMeasure
method inCalendarRowView
,CalendarGridView
is actually the performance hit compared to its original works.I thought the slowness would be related to that I was using objects under
Java.Util.*
package. However, after I have converted all those objects to C# flavoredDateTime
type, the problem still exists.Any suggestions are welcome.
OnMeasure
is part of Mono for Android framework. I am not sure if the problem is related to the framework.The text was updated successfully, but these errors were encountered: