MagicMashRoom / SuperCalendar

@Deprecated android 自定义日历控件 支持左右无限滑动 周月切换 标记日期显示 自定义显示效果跳转到指定日期
2.76k stars 484 forks source link

设置选中日期 #64

Closed JobeReeves closed 7 years ago

JobeReeves commented 7 years ago

不知道框架有没有设置选中日期的方法,让pager定位到某一月

drowtram commented 7 years ago

在demo里面SyllabusActivity类中修改refreshMonthPager()方法即可: 例如定位到2001年9月11号

  private void refreshMonthPager() {
//        CalendarDate today = new CalendarDate();
        CalendarDate today = new CalendarDate(2001,9,11);
        calendarAdapter.notifyDataChanged(today);
        textViewYearDisplay.setText(today.getYear() + "年");
        textViewMonthDisplay.setText(today.getMonth() + "");
    }