tobiasschuerg / android-week-view

Android library for displaying an overview of events for a week like in a schedule(us) or timetable(uk).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status

Android Week View

Android library for displaying an overview of events for a week like in a schedule(us) or timetable(uk).

It's the week view initially used in Schedule Deluxe (https://play.google.com/store/apps/details?id=com.tobiasschuerg.stundenplan), which is now outsourced in favor of a better modularization.

Usage:

See SampleActivity.kt for how to use the week view.

In short:

  1. Attach the view to your layout:
<de.tobiasschuerg.weekview.view.WeekView android:id="@+id/week_view"
    android:layout_width="match_parent" android:layout_height="wrap_content"
    app:accent_color="@color/colorAccent" app:start_hour="8" app:end_hour="15" />
  1. Configure how events are displayed (optional):
val config = EventConfig(showSubtitle = false, showTimeEnd = false)
weekView.eventConfig = config
weekView.setShowNowIndicator(true)

3Add events:

val nowEvent = Event.Single(
    id = 1337,
    date = LocalDate.now(),
    title = "Dentist Appointment",
    shortTitle = "DENT",
    timeSpan = TimeSpan.of(LocalTime.of(10, 0), Duration.ofHours(1)),
    backgroundColor = Color.RED,
    textColor = Color.WHITE
)
weekView.addEvent(nowEvent)

Desugaring:

Starting from version 1.8.0, Android Week View has switched from JakeWharton's ThreeTen Backport to desugaring for java.time-API.

Get it

  1. Add it in your root build.gradle at the end of repositories:
allprojects {
  repositories {
  ...
  maven { url 'https://jitpack.io' }
  }
}
  1. Step 2. Add the dependency
dependencies {
  compile 'com.github.tobiasschuerg:android-week-view:-SNAPSHOT'
}

About

Android library for displaying an overview of events for a week like in a schedule(us) or timetable(uk).

License:MIT License


Languages

Language:Kotlin 100.0%