M'h*_*med 3 android android-gradle-plugin android-databinding
是否可以禁用某些布局的 Android 数据出价?
dataBinding {
enabled = true // not for all layout, possible ?
}
Run Code Online (Sandbox Code Playgroud)
如果您希望在生成绑定类时忽略布局文件,请将 tools:viewBindingIgnore="true" 属性添加到该布局文件的根视图:
tools:viewBindingIgnore="true"
Run Code Online (Sandbox Code Playgroud)
例如。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:viewBindingIgnore="true"
tools:context=".ui.MainActivity">
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1080 次 |
| 最近记录: |