Android Data Binding Library Tutorial with Firebase

Android Data Binding Library

Google suggests using Data Binding Library in our application. With the help of Data Binding Library, we can bind our UI component to data sources using declarative format. The default way of binding data to simple UI component (e.g. TextView, EditText) is findViewById() and setText(). But using Data Binding Library we do not need to …

Read moreAndroid Data Binding Library Tutorial with Firebase