-
Notifications
You must be signed in to change notification settings - Fork 316
日历Api
yannecer edited this page Apr 1, 2020
·
24 revisions
//设置选中模式 单选、多选
void setCheckMode(CheckModel checkModel);
//多选个数和模式
void setMultipleCount(int multipleCount, MultipleCountModel multipleCountModel);
// 默认选中时,是否翻页选中第一个,只在checkModel==SINGLE_DEFAULT_CHECKED有效
void setDefaultCheckedFirstDate(boolean isDefaultCheckedFirstDate);
//跳转日期 formatDate 必须为 yyyy-MM-dd 的字符串
void jumpDate(String formatDate);
//跳转日期
jumpDate(int year, int month, int day);
//上一页 上一周 上一月
void toLastPager();
//下一页 下一周 下一月
void toNextPager();
//回到今天
void toToday();