标签:表达 android oid googl text pre href enabled 大量
引言Data Binding(数据绑定)发布于2015年的Google I/O大会,旨在减少Android开发中的大量模板代码(比如findViewById()),增加代码及逻辑清晰度,提高开发效率和维护效率。
Data Binding,即数据绑定,是Android团队实现MVVM架构的一种方法,使得数据(对象)可以直接绑定到布局的xml中,数据的变化直接反映到View上。
同时,Data Binding也支持双向绑定。
集成非常简单,使用起来也非常方便,使你的工程支持Data Binding,仅需一项配置即可。
android {
…
dataBinding {
enabled = true
}
}
具体的使用步骤,可以点击下一篇:Data Binding的集成与配置
Android开发教程 - 使用Data Binding(一) 介绍
标签:表达 android oid googl text pre href enabled 大量
原文地址:http://blog.51cto.com/11761032/2170622