CalendarDateBinder

interface CalendarDateBinder<T : RecyclerView.ViewHolder>

An interface used to tell the calendar adapter how to create and bind your date cell ViewHolder.

Functions

Link copied to clipboard
abstract fun onBindView(viewHolder: T, calendarDay: CalendarDay)

Called by Ephemeris when data should be displayed in the given cell.

Link copied to clipboard
abstract fun onCreateViewHolder(inflater: LayoutInflater, parent: ViewGroup): T

Called when Ephemeris needs a new ViewHolder for a date cell.

Sources

Link copied to clipboard