Android超炫日期日历控件:TimesSquare

先看效果图:

Android超炫日期日历控件:TimesSquare_第1张图片

使用说明:

在布局文件中:

在Java代码中:

Calendar nextYear = Calendar.getInstance();
nextYear.add(Calendar.YEAR, 1);

CalendarPickerView calendar = (CalendarPickerView) findViewById(R.id.calendar_view);
Date today = new Date();
calendar.init(today, nextYear.getTime())
    .withSelectedDate(today);

源码下载

你可能感兴趣的:(Android,Android,日期,日历,控件,TimesSquare)