All Projects → shrikanth7698 → Collapsible Calendar View Android

shrikanth7698 / Collapsible Calendar View Android

Licence: mit
Collapsible CalendarView is a simple calendar view which can be collapsed to save space and can be expanded when needed

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Collapsible Calendar View Android

Campcotcollectionview
Collapse and expand UICollectionView sections with one method call.
Stars: ✭ 161 (-52.08%)
Mutual labels:  library, collapsible
Material Calendar View
📅 Material Design Calendar compatible with API 11+
Stars: ✭ 360 (+7.14%)
Mutual labels:  library, calendar-view
Unstated Next
200 bytes to never think about React state management libraries ever again
Stars: ✭ 3,784 (+1026.19%)
Mutual labels:  library
Orionpreview
🅾️ OrionPreview is a simple animation with tanslation or scale views written in Java.
Stars: ✭ 335 (-0.3%)
Mutual labels:  library
Secure Storage Android
Store strings & credentials securely encrypted on your device
Stars: ✭ 333 (-0.89%)
Mutual labels:  library
Cordova Plugin Device
Apache Cordova Plugin device
Stars: ✭ 327 (-2.68%)
Mutual labels:  library
Shortcode
Advanced shortcode (BBCode) parser and engine for PHP
Stars: ✭ 331 (-1.49%)
Mutual labels:  library
Clojure.java Time
Java 8 Date-Time API for Clojure
Stars: ✭ 323 (-3.87%)
Mutual labels:  library
Sectionedslider
iOS 11 Control Center Slider
Stars: ✭ 336 (+0%)
Mutual labels:  library
Flutter circular chart
Animated radial and pie charts for Flutter
Stars: ✭ 330 (-1.79%)
Mutual labels:  library
Box Shadows.css
♓️ A cross-browser collection of CSS box-shadows
Stars: ✭ 335 (-0.3%)
Mutual labels:  library
Metrics Clojure
A thin façade around Coda Hale's metrics library.
Stars: ✭ 330 (-1.79%)
Mutual labels:  library
Easyvalidation
✔️ A text and input validation library in Kotlin for Android
Stars: ✭ 328 (-2.38%)
Mutual labels:  library
Iterator
The Hoa\Iterator library.
Stars: ✭ 333 (-0.89%)
Mutual labels:  library
Ccxt
A JavaScript / Python / PHP cryptocurrency trading API with support for more than 100 bitcoin/altcoin exchanges
Stars: ✭ 22,501 (+6596.73%)
Mutual labels:  library
Cheap Ruler
Fast approximations for common geodesic measurements 🌐
Stars: ✭ 334 (-0.6%)
Mutual labels:  library
Android Week View
Android Week View is an android library to display calendars (week view or day view) within the app. It supports custom styling.
Stars: ✭ 3,347 (+896.13%)
Mutual labels:  calendar-view
Libplist
A library to handle Apple Property List format in binary or XML
Stars: ✭ 330 (-1.79%)
Mutual labels:  library
Swift Ui Animation Components And Libraries
Swift UI libraries, iOS components and animations by @Ramotion
Stars: ✭ 3,455 (+928.27%)
Mutual labels:  library
Yandex Music Api
Неофициальная Python библиотека для работы с API сервиса Яндекс.Музыка
Stars: ✭ 335 (-0.3%)
Mutual labels:  library

alt text

forthebadge

Buy Me a Coffee at ko-fi.com

Still in Active development.

Android Arsenal

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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].