Android日历视图:SilkCal

jopen 9年前

Android calendar视图,灵感源于 Sunrise calendar 和 iOS7 stock calendar。滚动月的时候会高亮显示当前年月。

运行效果:

使用说明:

本库根据Robin ChutauxCalendarListview 改编。


在依赖中添加compile'me.nlmartian.silkcal:silkcal:0.1.0'


按如下方法把jcenter添加到repositories:


allprojects {     repositories {         jcenter()     }  }


把DayPickerView添加到布局:


  <me.nlmartian.silkcal.DayPickerView          xmlns:calendar="http://schemas.android.com/apk/res-auto"          android:id="@+id/calendar_view"          android:layout_width="match_parent"          android:layout_height="260dp"          android:background="@android:color/white"          calendar:drawRoundRect="false"/>


项目主页:http://www.open-open.com/lib/view/home/1434354257442