eltohamy / material-hijri-calendarview

A Material design back port of Android's Hijri CalendarView
https://github.com/eltohamy/material-hijri-calendarview
Apache License 2.0
58 stars 13 forks source link

Material Hijri Calendar View Android Arsenal

A Material design back port of Android's Hijri CalendarView. The goal is to have a Material look and feel, rather than 100% parity with the platform's implementation.

Demo Screen Capture

Usage

  1. Add implementation 'com.github.eltohamy:material-hijri-calendarview:1.1.2' to your dependencies.
  2. Add implementation group: 'com.github.msarhan', name: 'ummalqura-calendar', version:'1.1.9' to your dependencies.
  3. Add MaterialHijriCalendarView into your layouts or view hierarchy.
  4. Set a OnDateSelectedListener or call MaterialHijriCalendarView.getSelectedDates() when you need it.

Javadoc Available Here

Example:

<com.github.eltohamy.materialhijricalendarview.MaterialHijriCalendarView
    android:id="@+id/calendarView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    app:mcv_showOtherDates="all"
    app:mcv_selectionColor="#00F"
    />

Major Change in 1.1.2

migrate to AndroidX

Major Change in 1.1.1

fix issues. add mcv_calendarDiff attribute to set difference from ummalqura-calendar in some countries.

Major Change in 1.1.0

fix dependencies issue.

Major Change in 1.0.0

With the implementation of multiple selection, some of the apis needed to change to support it, namely OnDateChangedListener is now OnDateSelectedListener. There are also a bunch of new apis for multiple selection.

Also, showOtherDates is now a set of flags for finer control over which extra dates are shown.

Major Change in 0.8.0

The view now responds better to layout parameters. The functionality is similar to how adjustViewBounds works with ImageView, where the view will try and take up as much space as necessary, but we base it on tile size instead of an aspect ratio. The exception being that if a tileSize is set, that will override everything and set the view to that size.

Customization

One of the aims of this library is to be customizable. The many options include:

Events, Highlighting, Custom Selectors, and More!

All of this and more can be done via the decorator api. Please check out the decorator documentation.

Custom Selectors and Colors

If you provide custom drawables or colors, you'll want to make sure they respond to state. Check out the documentation for custom states.

Contributing

Would you like to contribute? Fork us and send a pull request! Be sure to checkout our issues first.

License

Copyright 2015 Prolific Interactive

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.