(1)使用findViewById根据resId实例化View或者ViewGroup对象。
这种方式在根据xml生成View或ViewGroup对象时被普遍使用。不过,这种方式也存在较大限制,要求resId标识的视图必须严格是方法调用对象的子视图。
View mView = parentView.findViewById(R.res.layout_star_view);
(2)调用View.inflate,实例化View或者ViewGroup对象。
View.inflate主要用于自定义View场景,该方法的第三个参数为父视图,若该参数为null,或者传入的viewGroup的rootview为null,view.getLayoutParams()无法获取视图的布局参数。
View view = View.inflate(this, R.layout.layout_pager_guide_1, null);
(3)调用inflater.inflate方法,动态实例化出View或者ViewGroup对象。
LayoutInflater的inflate方法,除了需要传入Context和Xml布局中的resId外,还有一个可选参数,用来标识生成的view是否需要挂载到父View上。如果该参数传入false,表示允许生成的View不添加到ViewGroup中,后续通过view.getLayoutParams()可以获得该视图的各种布局参数并允许通过代码动态调整。这对在RecyclerView等场景动态修改ViewHolder的布局参数非常有用。
LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.layout_star_view_item, parent, false);
//获取LayoutInflater的三种方式
LayoutInflater inflater = getLayoutInflater(); //调用Activity的getLayoutInflater()
LayoutInflater inflater =(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
LayoutInflater inflater = LayoutInflater.from(context);
(4)重写Framgment的onCreateView方法,用inflater动态渲染view。
在Framgment等特定场景,inflater会从函数外部传入,开发者无需自己获取。
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_square, null);
initView(view);
return view;
}