几种创建LayoutInflater对象的方法
LayoutInflater layoutInflater;
1.layoutInflater = Context.getLayoutInflater();
2.layoutInflater = (LayoutInflater)activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
3.layoutInflater = LayoutInflater.from(this);
1 楼 CoolinZ 2012-06-12 第三中似乎最常用