2024-12-25LayoutInflater.from(context).inflate() 和 View.inflate两个都是布局加载器,而View.inflate是封装LayoutInflater.from(context).inflate后的产物,功能相同。将布局文件/res/layout/my_view.xml实例化为View对象,inflate()方法返回布局文件的view对象。LayoutInflater.from(getContext()).inflate(intresource,ViewGrouproot);//root为nu