我这样做是为了在另一个布局上引入布局。
但我不知道如何在需要时删除它们中的每一个。
myInflater = LayoutInflater.from(this);
View overView = myInflater.inflate(R.layout.segundacapa, null);
this.addContentView(overView, new LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT));
overView = myInflater.inflate(R.layout.thirdshape, null);
this.addContentView(overView, new LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT));
例如,如果我想删除布局 segundacapa 我应该怎么做?