Android——LayoutInflater.from().inflater()

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

1
2
3
4
5
6
//加载布局管理器
LayoutInflater inflater = LayoutInflater.from(context);
//将xml布局转换为view对象
convertView = inflater.inflate(R.layout.item_myseallist,parent,  false );
//利用view对象,找到布局中的组件
convertView.findViewById(R.id.delete); // 删除

你可能感兴趣的:(Android——LayoutInflater.from().inflater())