0

我有一个layout.xml面板android(R.layout.items)

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

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="textview1: " />

    <LinearLayout
        android:id="@+id/Panel1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="6dp"
        android:orientation="horizontal"
        android:padding="1dp" >

    <EditText
        android:id="@+id/agente2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="0.1"
        android:maxLength="5"
        android:singleLine="true" />

    <EditText
        android:id="@+id/agente2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="0.3"
        android:enabled="false"
        android:singleLine="true" >
    </EditText>
    <LinearLayout
        android:id="@+id/Panel2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="6dp"
        android:orientation="horizontal"
        android:padding="1dp" >
    <CheckBox
        android:id="@+id/cbTipoIncidente1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="CheckBox" />
.....

在这个面板中,我有一些linearlayout我想以动态和编程方式添加到另一个面板layout(r.layout.other)

使用 inflate 我只能添加r.layout资源而不是r.id. 我想将单个视图(例如 panel1)添加到r.layout.other. 有任何想法吗?

4

2 回答 2

3

将其另存LinearLayout为单独并使用以下标签panel.xml调用不同的layout.xml文件:<include>

   <LinearLayout ... >
         <include layout="@layout/panel" />
  </LinearLayout>
于 2013-02-25T09:17:38.093 回答
2

使用这个概念

LinearLayout global_panel = new LinearLayout (this);
        global_panel.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
        global_panel.setGravity(Gravity.FILL);
        global_panel.setBackgroundResource(R.drawable.back);
于 2013-02-25T09:16:46.147 回答