Skip to content

Instantly share code, notes, and snippets.

@tiwiz
Last active December 9, 2017 22:28
Show Gist options
  • Save tiwiz/6b566ad217f6a120ba237f2e2c096d4f to your computer and use it in GitHub Desktop.
Save tiwiz/6b566ad217f6a120ba237f2e2c096d4f to your computer and use it in GitHub Desktop.
abstract class OnScrollChangeObserver : RecyclerView.OnScrollListener() {
abstract fun onScrollChange(v: View,
scrollX: Int,
scrollY: Int,
oldScrollX: Int,
oldScrollY: Int)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment