我在我的Android应用程序中使用了一个简单的CalendarView:
<CalendarView
android:id="@+id/calendarView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:showWeekNumber="false"
android:shownWeekCount="5"/>
为什么它会在第17天显示两次?
当我点击第18天时,它选择第17天,第19天选择第18天。它从17到23错误的一天(那里没有第24天)。第25天它恢复正常。 从第17天到第18天,我注意到可能与之相关(或不相关)的事情开始了夏令时。我使用GMT -2巴西利亚时区。 在Android 5.0.2和4.1.1上测试(两个问题都相同)