Posts

Showing posts with the label Android DataBinding

Android DataBinding in RecyclerView – Profile Screen

Image
1. Prerequisite This example needs basic knowledge in android data binding. Get started with DataBinding by reading the below tutorial. Read: Android working with DataBinding 2. Creating New Project 1 . Create a new project in Android Studio from File ⇒ New Project and select Basic Activity from templates. 2 . Enable DataBiding in app/build.gradle . Also add the RecyclerView and Glide dependencies and Sync the project. android {      dataBinding {          enabled = true      } } dependencies {      //...      implementation 'com.github.bumptech.glide:glide:4.6.1'      annotationProcessor 'com.github.bumptech.glide:compiler:4.6.1'      implementation 'com.android.support:recyclerview-v7:27.1.0' } 3 . Add INTERNET permission in AndroidManifest.xml as the images needs to be loaded fro...