Android空线性布局内容

我有一个线性布局内的文本视图。 现在我想在java中删除这个文本视图。 这个文本视图是dynamic生成的。 我有线性布局的ID。 如何清空线性布局内的所有内容?

<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" android:id="@+id/myid"> <TextView .../> <TextView .../> <TextView .../> </LinearLayout> 

你可以使用这个:

 LinearLayout ll = (LinearLayout) findViewById(R.id.myid); ll.removeAllViews();