Tag: view binding
-
View Binding in Android Jetpack [Updated]
View binding is the current recommendation from the Google team for importing the views from XML to Activity, Fragment, or Adapter classes. View binding is a feature that allows us to write code that interacts with views. In most cases, view binding replaces findViewById. It supports both Java and Kotlin. To learn more about view binding check out the official documentation. […]