Data Binding
必要步骤
-
在Gradle/Scripts下的build.gradle (Module: app)添加
buildFeatures.dataBinding = true
之前的版本是添加
dataBinding { enabled true }
但我运行的时候报错了,并提示说改成了buildFeatures.dataBinding = true。
然后点右上角的sync。
-
到对应的布局文件.xml中,左上角会有小灯泡,点击小灯泡,点击“conver to data binding layout”。
起初并没有小灯泡出现,网上的博客说要到Preferences——Intentions——Dart打勾。
但我的Intentions中没有Dart包,于是到Plugins中下载下面的包。然后重新到Intentions中打勾。