thellmund / Android-Week-View

Display highly customizable calendar views in your Android app
Apache License 2.0
188 stars 97 forks source link

Show isAllDay event vertically (all hours) #262

Closed ParitoshVaidya closed 3 years ago

ParitoshVaidya commented 3 years ago

For all day event, the library is adding event at the top. I wanted to show it vertically (all hours).

I set isAllDay = true and tried arrangeAllDayEventsVertically with no success.

Am I missing something?

thellmund commented 3 years ago

What do you mean by I wanted to show it vertically (all hours)? Do you want it to cover the entire day?

ParitoshVaidya commented 3 years ago

Yes. I wanted to cover entire day.

thellmund commented 3 years ago

If you don't want the event to appear at the top, set isAllDay = false. Then, set the startTime and the endTime to 0:00 and 23:59, respectively.

ParitoshVaidya commented 3 years ago

I did the same for time being. Thanks!