Tôi có một bố cục để xem -
<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>
Những gì tôi muốn làm, là trong hoạt động chính của tôi với một bố cục như thế này
<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>
Tôi muốn lặp qua mô hình dữ liệu của mình và đưa nhiều khung nhìn bao gồm bố cục đầu tiên vào bố cục chính. Tôi biết tôi có thể làm điều này bằng cách xây dựng các điều khiển hoàn toàn trong mã, nhưng tôi tự hỏi liệu có cách nào để tự động xây dựng các khung nhìn để tôi có thể tiếp tục sử dụng bố cục thay vì đặt mọi thứ vào mã.