alamkanak / Android-Week-View

Android Week View is an android library to display calendars (week view or day view) within the app. It supports custom styling.
Apache License 2.0
3.42k stars 1.23k forks source link

Detect scroll end & force reload of events #384

Closed elmalote closed 8 years ago

elmalote commented 8 years ago

Is it possible to detect when user is scrolling and scrolling has completely stopped? mScroller.isFinished() doesn't return the correct value. Reports true even when it's still scrolling.

marunjar commented 8 years ago

Have you tried checking mCurrentScrollDirection/mCurrentFlingDirection? These properties should both contain Direction.NONE when not scrolling.

elmalote commented 8 years ago

Thanks for your answer. That is correct, my question was perhaps a little vague. I also need to detect when the user starts scrolling. I have solved this by using an interface. Is there a way to trigger the weekView to load all the events from a list again, thus bypassing monthChanged?

elmalote commented 8 years ago

Nevermind fixed it, my call to notifyDataSetChanged wasn't being fired.