Last active
December 9, 2017 22:28
-
-
Save tiwiz/6b566ad217f6a120ba237f2e2c096d4f 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
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