Databinding in RecyclerView - Android - Kotlin
Hey Guyss!! Already we have seen the basics of Databinding and how to use it in previous post . Now let's see how to use Databinding in RecyclerView . And Its gonna be a short post. ;) You can find the Project in GitHub . Prerequisite: build.gradle First, we have enable dataBinding in app-level build.gradle android { dataBinding { enabled = true } } Next, we hav...