ScrollCalendar


Source link: https://github.com/RafalManka/ScrollCalendar

Scroll Calendar

Android widget to present calendar in a recycler view. The idea was to replicate calendar the way calendar is presented in the amazing Airbnb app.

Installing

Improt the library into gradle

compile 'pl.rafman.widgets:scroll-calendar:1.5.1', {

  exclude group: 'com.android.support' 
}
 

Getting Started

Define layout in your xml file

<pl.rafman.scrollcalendar.ScrollCalendar

android:id="@+id/scrollCalendar"

android:layout_width="match_parent"

android:layout_height="0dp"

android:layout_weight="1"

scrollcalendar:backgroundColor="@android:color/transparent"

scrollcalendar:currentDayBackground="@drawable/scrollcalendar_circle_outline"

scrollcalendar:currentDayTextColor="@android:color/darker_gray"

scrollcalendar:customFont="fonts/montserrat-light.otf"

scrollcalendar:disabledBackgroundColor="@android:color/transparent"

scrollcalendar:disabledTextColor="@android:color/darker_gray"

scrollcalendar:fontColor="@android:color/black"

scrollcalendar:fontSize="18dp"

scrollcalendar:selectedBackground="@drawable/scrollcalendar_circle_full"

scrollcalendar:selectedBackgroundBeginning="@drawable/scrollcalendar_range_start"

scrollcalendar:selectedBackgroundEnd="@drawable/scrollcalendar_range_end"

scrollcalendar:selectedBackgroundMiddle="@drawable/scrollcalendar_range_middle"

scrollcalendar:selectedTextColor="@android:color/white"

scrollcalendar:unavailableBackground="@drawable/scrollcalendar_strikethrough"

scrollcalendar:unavailableTextColor="@android:color/darker_gray" />

Reference the widget in your Activity/Fragment and set callback

ScrollCalendar scrollCalendar = (ScrollCalendar) findViewById(R.id.scrollCalendar);
 scrollCalendar.setOnDateClickListener(new OnDateClickListener() {

  @Override
  public void onCalendarDayClicked(int year, int month, int day) {

// user clicked on a specific date on the calendar
  
}
 
}
);
 scrollCalendar.setDateWatcher(new DateWatcher() {

  @Override
  public int getStateForDate(int year, int month, int day) {

//
 CalendarDay.DEFAULT,

//
 CalendarDay.DISABLED,

//
 CalendarDay.TODAY,

//
 CalendarDay.UNAVAILABLE,

//
 CalendarDay.SELECTED,

return CalendarDay.DEFAULT;
  
}
 
}
);
 scrollCalendar.setMonthScrollListener(new MonthScrollListener() {

  @Override
  public boolean shouldAddNextMonth(int lastDisplayedYear, int lastDisplayedMonth) {

// return false if you don't want to show later months

return true;
  
}

  @Override
  public boolean shouldAddPreviousMonth(int firstDisplayedYear, int firstDisplayedMonth) {

// return false if you don't want to show previous months

return true;
  
}
 
}
);

Default behavior

  • Endless scrolling to the future. By default you can scroll the calendar Endlessly. If you want to stop adding months to the bottom of the adapter set MonthScrollListener callback and return false for the last month that you want to appear in shouldAddNextMonth method.
  • Endless scrolling to the past. By default you can not scroll to previous months. If you want to keep adding previous months potentially to infinity set MonthScrollListener callback and return true in shouldAddPreviousMonth method

States

Calendar supports Different states that a day can have in a month. Each state can be expressed by applying specific drawable background and a text color.

  • CalendarDay.DEFAULT - Regular day with no background
scrollcalendar:fontColor="@android:color/black" 
  • CalendarDay.DISABLED - When you want to indicate that the date is not available.
scrollcalendar:disabledBackgroundColor="@android:color/transparent" scrollcalendar:disabledTextColor="@android:color/darker_gray" 
  • CalendarDay.TODAY - for expressing current day
scrollcalendar:currentDayBackground="@drawable/scrollcalendar_circle_outline" scrollcalendar:currentDayTextColor="@android:color/darker_gray" 
  • CalendarDay.UNAVAILABLE - when day is not available take, or invalid. By default this state is expressed by strikethrough.
scrollcalendar:unavailableBackground="@drawable/scrollcalendar_strikethrough" scrollcalendar:unavailableTextColor="@android:color/darker_gray" 
  • CalendarDay.SELECTED - When a day is selected. By default it's a ble circle with white text. In order to display ranges properly you need to set Beginning, middle and end drawables according to your style. Proper drawables will be used automatically when two or more selected dates are placed next to each other.
scrollcalendar:selectedBackground="@drawable/scrollcalendar_circle_full" scrollcalendar:selectedBackgroundBeginning="@drawable/scrollcalendar_range_start" scrollcalendar:selectedBackgroundEnd="@drawable/scrollcalendar_range_end" scrollcalendar:selectedBackgroundMiddle="@drawable/scrollcalendar_range_middle" scrollcalendar:selectedTextColor="@android:color/white" 

Contributing

Authors

License

This project is licensed under the Apache 2.0 License.

Acknowledgments

  • Inspiration - Airbnb

Resources

ADP

Android Distribution Platform (ADP) is a fullstack framework for storing, distributing and installing versionized apk files based (mostly for internal team or roll-back purposes) on each CI git commit.

Twine is a command line tool for managing your strings and their translations. These strings are all stored in a master text file and then Twine uses this file to import and export strings in a variety of file types, including iOS and Mac OS X .strings files, Android .xml files, gettext .po files, and [jquery-localize][jquerylocalize] .json files.

This allows individuals and companies to easily share strings across multiple projects, as well as export strings in any format the user wants.

A simple yet-customizable Android drop-down menu. It supports Text with/without Icons, Separators, and even fully customized views.

Clean contacts is a sample repository to illustrate Clean architecture in Android. It has also many other details that hopefully will be useful too.

MarkdownView is an Android webview with the capability of loading Markdown text or file and display it as HTML, it uses MarkdownJ and extends Android webview.

Tool to output method counts in Android APK grouped by package.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes