Last active
December 18, 2017 21:38
-
-
Save HIFILEO/7e615b50806201352fb9e1add905eaa3 to your computer and use it in GitHub Desktop.
ViewController Ui Binding
This file contains 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
compositeDisposable.add(RxRecyclerView.scrollEvents(nowPlayingBinding.recyclerView) | |
.subscribe(recyclerViewScrollEvent -> { | |
//Send Information To View Model | |
if (scrollEventCalculator.isAtScrollEnd()) { | |
nowPlayingViewModel.loadMoreNowPlayingInfo(); | |
} | |
} | |
})); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment