LayoutInflater的inflate方法参数

时间:2021-12-13 08:28:19
public View inflate(int resource, ViewGroup root, boolean attachToRoot)  

如果调用inflate方法,传入了ViewGroup root参数,则会从root中得到由layout_width和layout_height组成的LayoutParams,在attachToRoot设置为false的话,就会对我们加载的视图View设置该LayoutParams。

 

如果设置了ViewGroup root参数,且attachToRoot设置为true的话,则将我们加载的视图做为子视图添加到root视图中。