在android中运行时重复一个布局

时间:2012-02-22 12:35:25

标签: android xml android-layout

我有一个xml文件,我想在我的代码中以编程方式重复一个RelativeLayout部分。如何在运行时重复布局?。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<RelativeLayout
    android:id="@+id/relativeLayout1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="0.11" >

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="39dp"
        android:layout_marginTop="26dp"
        android:text="Button" />

</RelativeLayout>

</LinearLayout>

3 个答案:

答案 0 :(得分:2)

LayoutInflater vi = (LayoutInflater) currentContext
                    .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            v = vi.inflate(R.layout.id, null);
parentview.add(v);

答案 1 :(得分:1)

您可以使用LayoutInflater多次实例化XML布局。

LayoutInflater  inflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = (View) inflater.inflate(R.layout.yourxml, null);

答案 2 :(得分:0)

here您可以找到关于在运行时创建和填充布局列表的答案。