没有addview方法
没有。。
没有。。
2017-11-26
View linear = View.inflate(this, R.layout.linear_layout, null);
View relative = View.inflate(this, R.layout.relative_layout, null);
View table = View.inflate(this, R.layout.table_layout, null);
View frame = View.inflate(this, R.layout.frame_layout, null);
viewList.add(linear);
viewList.add(relative);
viewList.add(table);
viewList.add(frame);
view的添加使用list的add方法 没有单独的addView方法
举报