Skip to content

Instantly share code, notes, and snippets.

@vchernyshov
Last active May 3, 2018 07:14
Show Gist options
  • Save vchernyshov/aa0e31562f881176764d3a6852937f82 to your computer and use it in GitHub Desktop.
Save vchernyshov/aa0e31562f881176764d3a6852937f82 to your computer and use it in GitHub Desktop.
class IdleStateScrollListener(private val analyticsFacade: AnalyticsFacade) : RecyclerView.OnScrollListener() {
fun onScrollStateChanged(recyclerView: RecyclerView, newState: Int) {
analyticsFacade.setPending(newState != RecyclerView.SCROLL_STATE_IDLE)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment