Skip to content

Instantly share code, notes, and snippets.

@AdiD253
Created December 27, 2018 10:15
Show Gist options
  • Save AdiD253/25fe83bf27d091063ba9a38185061877 to your computer and use it in GitHub Desktop.
Save AdiD253/25fe83bf27d091063ba9a38185061877 to your computer and use it in GitHub Desktop.
class SampleAdapter : RecyclerView.Adapter<SampleViewHolder>() {
private var itemList: List<SampleItem> by autoNotifyDelegate(adapter = this, initialValue = listOf())
fun setItems(itemList: List<SampleItem>) {
this.itemList = itemList
}
(...)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment