WeekCalendar

The sample project includes the usage of the library. Support for Android 4.0 and up.

Feel free to fork or issue pull requests on github. Issues can be reported on the github issue tracker.

Android Arsenal

Demo

Setup


Gradle
dependencies {
   compile 'noman.weekcalendar:weekcalendar:1.0.6'
}
Maven
<dependency>
  <groupId>noman.weekcalendar</groupId>
  <artifactId>weekcalendar</artifactId>
  <version>1.0.6</version>
</dependency>

Sample Usage


 <noman.weekcalendar.WeekCalendar
    android:id="@+id/weekCalendar"
    android:layout_width="match_parent"
    android:layout_height="65dp"
    android:background="@color/colorPrimary"/>

Theme the calendar

There are a few xml attributes to customise the calendar. If you feel that any customization option is missing, let me know.
  • numOfPages
  • daysTextSize
  • daysTextColor
  • daysBackgroundColor
  • weekTextSize
  • weekTextColor
  • weekBackgroundColor
  • selectedBgColor
  • todaysDateBgColor
  • todaysDateTextColor
  • dayNameLength
  • hideNames

Example
 <noman.weekcalendar.WeekCalendar
   android:id="@+id/weekCalendar"
   android:layout_width="match_parent"
   android:layout_height="65dp"
   android:background="@color/colorPrimary"
   app:numOfPages="150"
   app:dayNameLength="threeLetters"
   app:todaysDateBgColor="#ffffff"
   app:todaysDateTextColor="#000000"/>
Explained
  • numOfPages by default, calendar has 100 pages. You can scroll 49 to left and 49 to right. Using this attribute you can set number of pages. You can send it to 1000, it depends on requirements.
  • daysTextSize day means day of the month. By default text size is 17sp.
  • daysTextColor by default the day text color is set to be white.
  • daysBackgroundColor if you have colorPrimary attribute in color.xml, then the backgroud color will be that one. Otherwise the purple color shown in the demo.
  • weekTextSize week means day of the week,i.e (S,M,T ..). By default text size is 17sp.
  • weekTextColor by default the week day text color is set to be white.
  • weekBackgroundColor same as daysBackgroundColor
  • selectedBgColor By default, its color is set to be colorAccent, if you've that attribute in attribute in color.xml, then the backgroud color will be that one. Otherwise the pink color shown in the demo.
  • todaysDateBgColor todays date background color, same as selectedBgColor.
  • todaysDateTextColor todays date text color, by default the text color is set to be white.
  • dayNameLength week day name length, singleLetter means (S,M,T..) and threeLetters means (Sun, Mun, Tue..)
  • hideNames , set this attribute to hide name of week days.

Impelement Listener

`OnDateClickListener` returns `DateTime` object. `DateTime` is class available in Joda Time. I will recommend using this library if you are playing with date and time.
weekCalendar.setOnDateClickListener(new OnDateClickListener() {
        @Override
        public void onDateClick(DateTime dateTime) {
            Toast.makeText(MainActivity.this, 
            "You Selected " + dateTime.toString(), Toast.LENGTH_SHORT).show();
        }

    });

See the sample project for usage of methods like

  • reset()
  • moveToNext()
  • moveToPrevious()
  • setSelectedDate(DateTime)
  • setStartDate(DateTime)

GitHub