LayoutInflater方法Inflate三种重载的区别
今天学习了hongyang的博文Android LayoutInflater深度解析 给你带来全新的认识,对LayoutInflater三个重载方法inflate的认识又加深了一步,在此摘要其博文要点:
Inflate(resId , null ) 只创建temp ,返回temp
Inflate(resId , parent, false )创建temp,然后执行temp.setLayoutParams(params);返回temp
Inflate(resId , parent, true ) 创建temp,然后执行root.addView(temp, params);最后返回root
由上面已经能够解释: