item多数用LayoutInflater.from(context).inflate传入布局
Viewview = LayoutInflater.from(context).inflate(R.layout.item_list,null);
该方法传入第二个参数null则控件view的自定义属性无效,如高度、居中等
Viewview = LayoutInflater.from(context).inflate(R.layout.item_list,parent,false);
该方法传入parent跟false之后自定义属性生效
网友评论