Skip to content

Instantly share code, notes, and snippets.

@AndrewHaisting
Last active December 20, 2017 15:57
Show Gist options
  • Save AndrewHaisting/840f7b6ac178fc9a0cd4a52c14c681af to your computer and use it in GitHub Desktop.
Save AndrewHaisting/840f7b6ac178fc9a0cd4a52c14c681af to your computer and use it in GitHub Desktop.
override fun onImageClick(item: ImageItem) {
item.isFavorited = !item.isFavorited
recycler.adapter.notifyItemChanged(items.indexOf(item),
ImageAdapter.Payload.FAVORITE_CHANGE)
// We'll check for Payload.FAVORITE_CHANGE in our adapter
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment