Last active
May 3, 2018 07:14
-
-
Save vchernyshov/aa0e31562f881176764d3a6852937f82 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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