Author Archives: diego
29Sep
Android working with DataBinding
Android DataBinding provides a way to tie the UI with business logic allowing the UI values to update automatically without manual intervention. This reduces lot of boilerplate code in your business logic that you usually write to sync the UI when new data is available. DataBinding is one of the android architecture components suggested by android.
In this article we are going to learn the basics of DataBinding and in the next article, a simple profile screen is built using the RecyclerView with DataBinding.
…Read More
4Avr
Using Butterknife for view injection
Using the Butterknife library for view injection in Android. This tutorial explains the usage of the butterknife library to inject views into Android application….
Read More