muraee / Horizontal-Calendar

A material horizontal calendar view for Android based on RecyclerView
Apache License 2.0
1.21k stars 230 forks source link

Hide weekends #96

Open Naturaldai opened 6 years ago

Naturaldai commented 6 years ago

Is there way to hide weekends

IvanAbakumov commented 5 years ago

@Naturaldai This lib have a parameters. "showBottomText(false/true)" - hide/show week "showTopText(false/true)" - hide/show month

Example for Kotlin:

 val horizontalCalendar = HorizontalCalendar.Builder(view, R.id.calendar_test_lib)
            .configure()
            .showTopText(false)
            .end()
            .build