RecyclerCalendarAndroid
A simple DIY library to generate your own custom Calendar View using RecyclerView, written in Kotlin
Step 1. Add the JitPack repository to your build file
Add it in your root build.gradle at the end of repositories:
Step 2. Add the dependency
Here are sample calenders you can create with this library :
Week Calendar | Month With Events | Month With Swipe Pages |
---|---|---|
Code At: horizontal | Code At: vertical | Code At: viewpager |
![]() |
![]() |
![]() |
Above sample are not the limit of this library, possiblities are endless as you can create custom view for each date as well as add custom Business Login on top of it.
Here is how you can create your own Calendar using RecyclerCalendarAndroid.
Create a RecyclerView Adapter which extends RecyclerCalendarBaseAdapter
- Implement following methods:
- Create
ViewHolder
Class for youView
which extendsRecyclerView.ViewHolder
:
- Now just implament
onBindViewHolder
above code is direct example from VerticalRecyclerCalendarAdapter
For People who want to just use simple date picker/selection calendar, i have created SimpleRecyclerCalendarView
To use SimpleRecyclerCalendarView
, just include following in your .xml
And in Your Activity, include following
To know More about SimpleRecyclerCalendarView visit SimpleRecyclerCalendarActivity
For People who want to just use infinite date picker/selection calendar, i have created InfiniteRecyclerCalendarView
To use InfiniteRecyclerCalendarView
, just include following in your .xml
And in Your Activity, include following