0
我這樣做是爲了在另一個佈局中引入佈局。Android刪除佈局充氣
但我不知道如何在需要時移除他們中的每一個。
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我該怎麼辦?
清除你的問題。 「刪除佈局segundacapa」是什麼意思?你想完成什麼 –
謝謝你的回答。也許我的新答案,清除我的問題.... – Sie7e