码迷,mamicode.com
首页 > 移动开发 > 详细

Android超炫日期日历控件:TimesSquare

时间:2014-07-19 02:27:56      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:android   日期   日历   控件   timessquare   

先看效果图:

bubuko.com,布布扣

使用说明:

在布局文件中:

<com.squareup.timessquare.CalendarPickerView
    android:id="@+id/calendar_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    />

在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超炫日期日历控件:TimesSquare

标签:android   日期   日历   控件   timessquare   

原文地址:http://blog.csdn.net/linglongxin24/article/details/37932587

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!