뷰 레이아웃이 있습니다-
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="0px"
android:orientation="vertical">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/items_header"
style="@style/Home.ListHeader" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/items_none"
android:visibility="gone"
style="@style/TextBlock"
android:paddingLeft="6px" />
<ListView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/items_list" />
</LinearLayout>
내가하고 싶은 것은 다음과 같은 레이아웃이있는 주요 활동입니다.
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="0px"
android:id="@+id/item_wrapper">
</LinearLayout>
내 데이터 모델을 반복하고 첫 번째 레이아웃으로 구성된 여러보기를 기본 레이아웃에 삽입하고 싶습니다. 코드 내에서 컨트롤을 완전히 작성 하여이 작업을 수행 할 수 있다는 것을 알고 있지만 모든 것을 코드에 넣지 않고 레이아웃을 계속 사용할 수 있도록 뷰를 동적으로 빌드하는 방법이 있는지 궁금합니다.