1

私は私のlayout.xmlにこの行を持っています:

<include android:id="@+id/promo1" android:layout_width="fill_parent"
         android:layout_height="fill_parent" layout="@layout/one_promo">
</include>
<include android:id="@+id/promo2" android:layout_width="fill_parent"
         android:layout_height="fill_parent" layout="@layout/one_promo">
</include>
<include android:id="@+id/promo3" android:layout_width="fill_parent"
         android:layout_height="fill_parent" layout="@layout/one_promo">
</include>

これを Java コードでプログラム的に実行したいと考えています。

助けてください。

前もって感謝します

4

1 に答える 1

4

以下に示すように LayoutInflater を使用します

XML で相対レイアウトを定義する

<RelativeLayout android:id="@+id/mylayout" android:layout_width="fill_parent"
         android:layout_height="fill_parent" />

Java コードにマップする

RelativeLayout mynewlayout = (RelativeLayout) findById(R.id.mylayout);

レイアウト インフレータを使用する

LayoutInflater layoutInflater = (LayoutInflater) 
        this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);    
mynewlayout.addView(0, layoutInflater.inflate(R.layout.one_promo, this, false) );
于 2011-05-11T09:17:46.820 に答える