LayoutInflate作用

从一个Context中,获得一个布局填充器,这样你就可以使用这个填充器来把xml布局文件转为View对象了。

//加载布局管理器

LayoutInflater inflater = LayoutInflater.from(context);

//将xml布局转换为view对象

convertView = inflater.inflate(R.layout.item_myseallist,parent, false);

//利用view对象,找到布局中的组件

convertView.findViewById(R.id.delete);// 删除

如果有用,请采纳,谢谢!

你可能感兴趣的:(LayoutInflate作用)