Android Architecture Components with Data Binnding

Viewed 215

In Android Architecture Components docs on the Handling Lifecycle page in Best practices paragraph, written:

Use Data Binding to maintain a clean interface between your views and the UI controller.

Can someone provide me with link to example on how to use this libraries together?

1 Answers

You can take a look into this Google Sample, which applies Architecture Components and the Data Binding Library together.

Related