Android-动态地将视图添加到视图中

Android-动态地将视图添加到视图中

我有个景观布局-

<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>

我想循环遍历我的数据模型,并将包含第一个布局的多个视图注入主布局中。我知道我可以通过在代码中完全构建控件来实现这一点,但是我想知道是否有一种方法可以动态地构建视图,这样我就可以继续使用布局,而不是把所有的东西都放在代码中。


慕丝7291255
浏览 535回答 3
3回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Android