0

我这样做是为了在另一个布局上引入布局。

但我不知道如何在需要时删除它们中的每一个。

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 我应该怎么做?

4

1 回答 1

0

您将设置标记所有布局。当删除每个父母的所有孩子的布局时,而不是控制它的标签。

于 2013-10-09T15:21:45.130 回答