最佳答案
我创建了一个引用 xml 项的线性布局。在这个线性布局中,我动态地放置了一些文本视图,因此不需要从 xml 中获取它们。现在我需要从线性布局中删除这些文本视图。我试过了:
if(((LinearLayout) linearLayout.getParent()).getChildCount() > 0)
((LinearLayout) linearLayout.getParent()).removeAllViews();
但是没用。 我该怎么办? 谢谢 Mattia