Android开发之获取布局填充器的三种方式
第一种 :
LayoutInflater inflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.item_listview, null); // 第一个参数写你需要加载的布局文件
第二种 :
LayoutInflater inflater = LayoutInflater.from(MainActivity.this); // 参数 : 填写context
View view = inflater.inflate(R.layout.item_listview, null); // 第一个参数写你需要加载的布局文件
第三种 :
View view = View.inflate(MainActivity.this, R.layout.item_listview, null);
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2024-10-06 12:36:22