thellmund / Android-Week-View

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

Hours text in time column is visible behind the header #202

Closed tlozovyi closed 4 years ago

tlozovyi commented 4 years ago

Describe the bug Time in time column is visible behind the header. At the same time event chips are hidden when they are scrolled behind the header.

To Reproduce Steps to reproduce the behavior:

  1. Open WeekView
  2. Scroll down to place hours text behind the header
  3. Observe hours text behind the header

Expected behavior Hours text in time column should be hidden behind the header.

Actual behavior Time in time column is visible behind the header

Screenshots device-2020-11-18-115017

Additional context

thellmund commented 4 years ago

Are you by any change using Color.TRANSPARENT as your header background color?

tlozovyi commented 4 years ago

Indeed, setting solid color solved the problem. Thanks!

thellmund commented 4 years ago

Awesome! Just to be sure, I have limited the drawing to just the time column in 649bfdc6e22489b3eda0f41bae0f323d9b815126 so that you can use a transparent color again 😉

tlozovyi commented 4 years ago

Wow, that's great, good job, thanks!