赞
踩
Warning: The 'kotlin-android-extensions' Gradle plugin is deprecated. Please use this migration guide (https://goo.gle/kotlin-android-extensions-deprecation) to start working with View Binding (https://developer.android.com/topic/libraries/view-binding) and the 'kotlin-parcelize' plugin.
kotlin kotlin-android-extensions弃用
参照官方文档
视图绑定功能可按模块启用。要在某个模块中启用视图绑定,请将 viewBinding
元素添加到其 build.gradle
文件中,如下例所示:
- android {
- ...
- viewBinding {
- enabled = true
- }
- }
如果您希望在生成绑定类时忽略某个布局文件,请将 tools:viewBindingIgnore="true"
属性添加到相应布局文件的根视图中:
- <LinearLayout
- ...
- tools:viewBindingIgnore="true" >
- ...
- </LinearLayout>
为某个模块启用视图绑定功能后,系统会为该模块中包含的每个 XML 布局文件生成一个绑定类。每个绑定类均包含对根视图以及具有 ID 的所有视图的引用。系统会通过以下方式生成绑定类的名称:将 XML 文件的名称转换为驼峰式大小写,并在末尾添加“Binding”一词。
例如,假设某个布局文件的名称为 result_profile.xml
:
- <LinearLayout ... >
- <TextView android:id="@+id/name" />
- <ImageView android:cropToPadding="true" />
- <Button android:id="@+id/button"
- android:background="@drawable/rounded_button" />
- </LinearLayout>
- 所生成的绑定类的名称就为 ResultProfileBinding。此类具有两个字段:一个是名为 name 的 TextView,另一个是名为 button 的 Button。该布局中的 ImageView 没有 ID,因此绑定类中不存在对它的引用。
-
- 每个绑定类还包含一个 getRoot() 方法,用于为相应布局文件的根视图提供直接引用。在此示例中,ResultProfileBinding 类中的 getRoot() 方法会返回 LinearLayout 根视图。
-
- 以下几个部分介绍了生成的绑定类在 Activity 和 Fragment 中的使用。
-
- 在 Activity 中使用视图绑定
- 如需设置绑定类的实例以供 Activity 使用,请在 Activity 的 onCreate() 方法中执行以下步骤:
-
- 调用生成的绑定类中包含的静态 inflate() 方法。此操作会创建该绑定类的实例以供 Activity 使用。
- 通过调用 getRoot() 方法或使用 Kotlin 属性语法获取对根视图的引用。
- 将根视图传递到 setContentView(),使其成为屏幕上的活动视图。
kt
- private lateinit var binding: ResultProfileBinding
-
- override fun onCreate(savedInstanceState: Bundle) {
- super.onCreate(savedInstanceState)
- binding = ResultProfileBinding.inflate(layoutInflater)
- val view = binding.root
- setContentView(view)
- }
java
- private ResultProfileBinding binding;
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- binding = ResultProfileBinding.inflate(getLayoutInflater());
- View view = binding.getRoot();
- setContentView(view);
- }
使用
kt
- binding.name.text = viewModel.name
- binding.button.setOnClickListener { viewModel.userClicked() }
java
- binding.getName().setText(viewModel.getName());
- binding.button.setOnClickListener(new View.OnClickListener() {
- viewModel.userClicked()
- });
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。