SilkCal

Android calendar view inspired by Sunrise calendar and iOS7 stock calendar.

SilkCal

Usage

  1. Add compile 'me.nlmartian.silkcal:library:0.1.1' to your dependencies.
  2. Add jcenter to your repositories list like this:
allprojects {
   repositories {
       jcenter()
   }
}
  1. Add DayPickerView to your view hierarchy like this:
  <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"/>

GitHub