Popularity
7.7
Stable
Activity
0.0
Stable
1,621
36
286

Description

CosmoCalendar is a fully customizable calendar with a wide variety of features and displaying modes. https://applikeysolutions.com

Programming language: Java
License: MIT License
Tags: Calendar     Date & Time     Events    

CosmoCalendar alternatives and similar packages

Based on the "Date & Time" category.
Alternatively, view CosmoCalendar alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of CosmoCalendar or a related project?

Add another 'Date & Time' Package

README

CosmoCalendar

GitHub license

Made by Applikey Solutions

[](pictures/cosmo-calendar.png)

Usage

  compile 'com.github.applikeysolutions:cosmocalendar:1.0.4'

Customization

### Common

  • calendarOrientation - Possible values: HORIZONTAL, VERTICAL
  • calendarBackgroundColor
  • monthTextColor
  • otherDayTextColor
  • dayTextColor
  • firstDayOfTheWeek
  • weekDayTitleTextColo
  • showDaysOfWeek - Defines if we need to display week day titles for every month
  • showDaysOfWeekTitle - Defines if we need to display week day title for whole calendar

### Selection

  • selectionType - Possible values: SINGLE, MULTIPLE, RANGE, NONE
  • selectedDayTextColor
  • selectedDayBackgroundColor
  • selectedDayBackgroundStartColor - Background color of START day from selected range
  • selectedDayBackgroundEndColor - Background color of END day from selected range
  • selectionBarMonthTextColor

### Current day

  • currentDayTextColor
  • currentDayIconRes
  • currentDaySelectedIconRes

### Navigation buttons

  • previousMonthIconRes
  • nextMonthIconRes

### Weekend days

  • weekendDays

    calendarView.setWeekendDays(new HashSet(){{
            add(Calendar.THURSDAY);
            add(Calendar.TUESDAY);
    }});
    
  • weekendDayTextColor

### Connected days You can add some days for example holidays:

  //Set days you want to connect
  Calendar calendar = Calendar.getInstance();
  Set<Long> days = new TreeSet<>();
  days.add(calendar.getTimeInMillis());
  ...

  //Define colors
  int textColor = Color.parseColor("#ff0000");
  int selectedTextColor = Color.parseColor("#ff4000");
  int disabledTextColor = Color.parseColor("#ff8000");
  ConnectedDays connectedDays = new ConnectedDays(days, textColor, selectedTextColor, disabledTextColor);

  //Connect days to calendar
  calendarView.addConnectedDays(connectedDays);

and customize them:

  • connectedDayIconRes;
  • connectedDaySelectedIconRes;
  • connectedDayIconPosition (TOP/BOTTOM); java calendarView.setConnectedDayIconPosition(ConnectedDayIconPosition.TOP);

### Disabled days You can add days so that you can not select them:

  Set<Long> disabledDaysSet = new HashSet<>();
  disabledDaysSet.add(System.currentTimeMillis());
  calendarView.setDisabledDays(disabledDaysSet);

#### Disabled days criteria

  • month criteria range: java //from 1st to 5th day of the month calendarView.setDisabledDaysCriteria(new DisabledDaysCriteria(1, 5, DisabledDaysCriteriaType.DAYS_OF_MONTH));
  • week criteria range:

    //from Monday to Friday
    DisabledDaysCriteria criteria = new DisabledDaysCriteria(Calendar.MONDAY, Calendar.FRIDAY, DisabledDaysCriteriaType.DAYS_OF_WEEK);
    calendarView.setDisabledDaysCriteria(criteria);
    
  • disabledDayTextColor - Text color of disabled day

### Month change listener

  calendarView.setOnMonthChangeListener(new OnMonthChangeListener() {
            @Override
            public void onMonthChanged(Month month) {

            }
        });

### Calendar dialog

   new CalendarDialog(this, new OnDaysSelectionListener() {
            @Override
            public void onDaysSelected(List<Day> selectedDays) {

            }
        }).show();

Demo

Single Choice Multiple
[](pictures/Calendar-single_2.jpg) [](pictures/Calendar-multiple-years_2.jpg)
Range Customized
[](pictures/Calendar-range-years_2.jpg) [](pictures/Calendar-dialogue-dark_2.jpg)

Release Notes

1.0.0

  • Release version.

1.0.1

  • Functionality optimization
  • Added disabled days criteria feature
  • Added more customization for connected days (selected/unselected icon, top/bottom position for icon)

1.0.2

  • Added "NONE" selection type
  • The functionality of creating months is optimized
  • Added OnMonthChangeListener

1.0.3

  • Fixed crash on swipe
  • Connected days logic changed. Now you can add multiple connected day lists!

1.0.4

  • Fixed small bugs

Contact Us

You can always contact us via [email protected] We are open for any inquiries regarding our libraries and controls, new open-source projects and other ways of contributing to the community. If you have used our component in your project we would be extremely happy if you write us your feedback and let us know about it!

License

MIT License

Copyright (c) 2017 Applikey Solutions

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 all licence references and agreements mentioned in the CosmoCalendar README section above are relevant to that project's source code only.