熟悉AndroidAPI系列13——LayoutInflater
如何把一个xml文件渲染成一个View控件
1 //如何把一个xml文件渲染为一个View控件 2 //得到一个对这个Activity的渲染器inflater 3 LayoutInflater inflater = this.getLayoutInflater(); 4 //将image_switch.xml渲染成View控件 5 View view = inflater.inflate(R.layout.image_switch, null); 6 builder.setView(view);
在Activity里怎样获得另一个xml布局文件的控件
LayoutInflater factorys = LayoutInflater.from(当前类.this);
View textEntryView = factorys.inflate(R.layout.你要获取的另一个XML, null);
TextView y_type = (TextView) textEntryView.findViewById(R.id.控件ID);