LayoutInflater的inflate方法
this.convertView = LayoutInflater.from(context).inflate(layoutId,parent,false); this.convertView = LayoutInflater.from(context).inflate(layoutId,null);
上面两种方式,我看有的使用第一种,有的使用第二种,哪种更好一些?如果是第一种那这个第2个参数ViewGroup怎么理解,还有第3个参数是什么意思,为什么设置为false