Android日历视图:SilkCal
jopen
9年前
Android calendar视图,灵感源于 Sunrise calendar 和 iOS7 stock calendar。滚动月的时候会高亮显示当前年月。
运行效果:
使用说明:
本库根据Robin Chutaux 的CalendarListview 改编。
在依赖中添加compile'me.nlmartian.silkcal:silkcal:0.1.0'
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"/>