Viewbinding自动生成XML的一个对应绑定类

简介: 设置完sync一下,然后会在项目中看到对应的XML文件的一个继承了ViewBinding的对应绑定类。如果不想生成,则在XML文件中设置一个tools:viewBindingIgnore="true"属性,即可忽略不生成对应绑定类。

当你在项目(Module)的build.gradle中的android{}中设置


buildFeatures {

   viewBinding true

}


设置完sync一下,然后会在项目中看到对应的XML文件的一个继承了ViewBinding的对应绑定类。


如果不想生成,则在XML文件中设置一个tools:viewBindingIgnore="true"属性,即可忽略不生成对应绑定类。


如果你的XML是Activity生成的,那么对应绑定类的名字开头就是Activity,反之Fragment。然后就是对应Activity或者Fragment类名,最后再加一个Binding,就是这个自动生成的绑定类的名字。


就可以在程序中调用此名字,也就是一个类,可以实例化并调用此类中的方法。


这个绑定类有继承关系吗?


它只实现了ViewBinding这个接口。


public interface ViewBinding {
    /**
     * Returns the outermost {@link View} in the associated layout file. If this binding is for a
     * {@code <merge>} layout, this will return the first view inside of the merge tag.
     */
    @NonNull
    View getRoot();
}

这个绑定类的成员变量有什么呢?


有对应XML中各个控件变量


根布局rootView是private的,其他控件都是public的。


且全为final修饰。



这个绑定类的构造?


给上面的控件赋值的,有多少个控件就有多少个参数。



有什么方法?


第一个方法:getRoot()——获取根布局

@Override
  @NonNull
  public ConstraintLayout getRoot() {
    return rootView;
  }


第二个方法:inflate()——加载对应XML布局文件

@NonNull
  public static ActivityMainBinding inflate(@NonNull LayoutInflater inflater,
      @Nullable ViewGroup parent, boolean attachToParent) {
    View root = inflater.inflate(R.layout.activity_main, parent, false);
    if (attachToParent) {
      parent.addView(root);
    }
    return bind(root);
  }


第三个方法:bind()——绑定文件里面的控件

@NonNull
  public static ActivityMainBinding bind(@NonNull View rootView) {
    // The body of this method is generated in a way you would not otherwise write.
    // This is done to optimize the compiled bytecode for size and performance.
    int id;
    missingId: {
      id = R.id.bottomNavigationView;
      BottomNavigationView bottomNavigationView = ViewBindings.findChildViewById(rootView, id);
      if (bottomNavigationView == null) {
        break missingId;
      }
      id = R.id.fabPlus;
      FloatingActionButton fabPlus = ViewBindings.findChildViewById(rootView, id);
      if (fabPlus == null) {
        break missingId;
      }
      id = R.id.viewPager;
      ViewPager2 viewPager = ViewBindings.findChildViewById(rootView, id);
      if (viewPager == null) {
        break missingId;
      }
      return new ActivityMainBinding((ConstraintLayout) rootView, bottomNavigationView, fabPlus,
          viewPager);
    }
    String missingId = rootView.getResources().getResourceName(id);
    throw new NullPointerException("Missing required view with ID: ".concat(missingId));
  }
}


通过根布局和ID找控件,具体在这个方法中执行。

 @Nullable
    public static <T extends View> T findChildViewById(View rootView, @IdRes int id) {
        if (!(rootView instanceof ViewGroup)) {
            return null;
        }
        final ViewGroup rootViewGroup = (ViewGroup) rootView;
        final int childCount = rootViewGroup.getChildCount();
        for (int i = 0; i < childCount; i++) {
            final T view = rootViewGroup.getChildAt(i).findViewById(id);
            if (view != null) {
                return view;
            }
        }
        return null;
    }
目录
相关文章
|
6月前
|
XML Java 数据格式
Java一分钟之-JAXB:Java对象到XML绑定
【6月更文挑战第1天】Java Architecture for XML Binding (JAXB) 是Java平台标准,用于自动转换Java对象和XML。它通过注解实现声明式映射,简化XML处理。本文介绍了JAXB的基本使用、常见问题和最佳实践,包括对象到XML(Marshalling)和XML到对象(Unmarshalling)过程,并通过示例展示如何在Java类和XML之间进行转换。注意类型匹配、注解冲突和JAXB上下文创建等问题,以及如何优化性能和避免循环引用。
395 3
|
7月前
|
XML Java 数据库连接
MyBatis 解决上篇的参数绑定问题以及XML方式交互
MyBatis 解决上篇的参数绑定问题以及XML方式交互
73 0
|
XML JavaScript API
Qt通过Doc模式读取XML并设计一个增删改查方便的操作类
Qt通过Doc模式读取XML并设计一个增删改查方便的操作类
189 0
|
XML Java 数据库连接
Eclipse spring boot MyBatis1.4插件安装及自动生成xml、domain、mapper
在使用Eclipse 开发spring boot 时自动生成对象、mapper接口、domain,在此备忘方便后面查阅 新版本的mybatis会作一些调整,具体的操作方式可看我的另外一篇文章: https://developer.aliyun.com/article/1168902?spm=a2c6h.26396819.creator-center.12.12ed3e18lXUFoo
584 0
Eclipse spring boot MyBatis1.4插件安装及自动生成xml、domain、mapper
|
XML 数据格式
C#XmlHelper帮助类操作Xml文档的通用方法汇总(下)
C#XmlHelper帮助类操作Xml文档的通用方法汇总(下)
111 0
|
XML 数据格式
C#XmlHelper帮助类操作Xml文档的通用方法汇总(上)
C#XmlHelper帮助类操作Xml文档的通用方法汇总
153 0
|
XML JSON 数据格式
.NET中XML序列化和反序列化常用类和用来控制XML序列化的属性总结(XmlSerializer,XmlTypeAttribute,XmlElementAttribute,XmlAttributeAttribute,XmlArrayAttribute...)
.NET中XML序列化和反序列化常用类和用来控制XML序列化的属性总结(XmlSerializer,XmlTypeAttribute,XmlElementAttribute,XmlAttributeAttribute,XmlArrayAttribute...)
299 0
|
XML 数据安全/隐私保护 数据格式
Wix 安装部署教程(八) 自动生成XML小工具
原文:Wix 安装部署教程(八) 自动生成XML小工具     这个功能类似于Heat.exe,指定文件夹,生成对应的WIX标签。Winform做的,代码简单,生成的标签需要粘贴到对应的目录才能使用,并不是一步到位。
1153 0