Collapsible-Calendar-View-Android

Additional

Language
Kotlin
Version
v1.0.3 (Nov 18, 2019)
Created
Mar 5, 2018
Updated
May 11, 2022 (Retired)
Owner
Shrikanth Ravi (shrikanth7698)
Contributors
Shrikanth Ravi (shrikanth7698)
Tom Daniel (tomdaniel-it)
Balakrishnan S (97balakrishnan)
Karan Goel (karangoel16)
4
Activity
Badge
Generate
Download
Source code

Advertisement

Not being maintained. PRs are welcome

Version

Installation

  • Gradle

    Add it in your root build.gradle at the end of repositories:

     allprojects {
       repositories {
        ...
        maven { url 'https://jitpack.io' }
       }
      }

    Add the dependency in your app build.gradle

     dependencies {
       implementation 'com.github.shrikanth7698:Collapsible-Calendar-View-Android:v1.0.3'
      }
  • Maven

    Add the JitPack repository to your build file

     <repositories>
      <repository>
          <id>jitpack.io</id>
          <url>https://jitpack.io</url>
      </repository>
     </repositories>

    Add the dependency

     <dependency>
         <groupId>com.github.shrikanth7698</groupId>
         <artifactId>Collapsible-Calendar-View-Android</artifactId>
         <version>v1.0.0</version>
     </dependency>

Usage

Drop the Collapsible CalendarView in your XML layout as is shown below:

    <com.shrikanthravi.collapsiblecalendarview.widget.CollapsibleCalendar
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:id="@+id/calendarView">
    </com.shrikanthravi.collapsiblecalendarview.widget.CollapsibleCalendar>

And then in your Activity or fragment

final CollapsibleCalendar collapsibleCalendar = findViewById(R.id.calendarView);
        collapsibleCalendar.setCalendarListener(new CollapsibleCalendar.CalendarListener() {
            @Override
            public void onDaySelect() {
                Day day = viewCalendar.getSelectedDay();
                Log.i(getClass().getName(), "Selected Day: "
                        + day.getYear() + "/" + (day.getMonth() + 1) + "/" + day.getDay());
            }

            @Override
            public void onItemClick(View view) {

            }

            @Override
            public void onDataUpdate() {

            }

            @Override
            public void onMonthChange() {

            }

            @Override
            public void onWeekChange(int i) {

            }
        });

Customization

           <com.shrikanthravi.collapsiblecalendarview.widget.CollapsibleCalendar
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:primaryColor="@color/google_red"
                app:textColor="@android:color/white"
                app:selectedItem_textColor="@color/google_red"
                app:todayItem_textColor="@android:color/white"
                app:todayItem_background="@drawable/circle_white_stroke_background"
                app:selectedItem_background="@drawable/circle_white_solid_background"
                app:buttonLeft_drawableTintColor="@android:color/white"
                app:buttonRight_drawableTintColor="@android:color/white"
                app:expandIconColor="@android:color/white">
          </com.shrikanthravi.collapsiblecalendarview.widget.CollapsibleCalendar>

License

MIT License

Copyright (c) 2018 Shrikanth Ravi

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.