Skip to content

Instantly share code, notes, and snippets.

@varundwarkani
Created April 25, 2021 10:41
Show Gist options
  • Save varundwarkani/eff1124be6e0acae06402e13ee885bdc to your computer and use it in GitHub Desktop.
Save varundwarkani/eff1124be6e0acae06402e13ee885bdc to your computer and use it in GitHub Desktop.
homeScreenViewModel.getPagedListLiveData().observe(getViewLifecycleOwner(), upcomingMatches -> {
Log.d(LOGGER, "getPagedListLiveData" + upcomingMatches.size());
if (homeScreenBinding.recyclerView.getAdapter() != null) {
UpcomingMatchesViewAdapter upcomingMatchesViewAdapter = (UpcomingMatchesViewAdapter) homeScreenBinding.recyclerView.getAdapter();
upcomingMatchesViewAdapter.submitList(upcomingMatches);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment