动态地将视图添加到混合xml /代码复合布局

时间:2012-08-22 17:51:34

标签: android android-layout

很抱歉,如果这个问题/答案充满了多余的问题,那我就无法解决我的问题了。

我有一个复合视图(LinearLayout),它有一个用XML定义的固定部分和代码中的附加功能。我想动态地添加视图。

这是XML部分(compound.xml):

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/compoundView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >
    <TextView android:id="@+id/myTextView" 
        android:layout_width="110dp" 
        android:layout_height="wrap_content"
        android:text="000"  />
</LinearLayout>

我在代码中定义了一个LinearLayout来引用XML:

public class CompoundControlClass extends LinearLayout {
    public CompoundControlClass (Context context) {
        super(context);
        LayoutInflater li;
        li = (LayoutInflater)getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        li.inflate(R.layout.compound_xml,*ROOT*, *ATTACH*);
    }
    public void addAView(){
        Button dynBut = new Button();
        // buttoin def+layout info stripped for brevity
        addView(dynBut);
    }
}

我尝试以编程方式添加一个带有addAView的视图。

如果ROOT为null且ATTACH为false,则我有以下层次结构(每个HierarchyViewer):

  • CompoundControlClass&gt; dynBut

XML中的原始TextView消失了。

如果ROOT是这样且ATTACH为真,我有以下层次结构:

  • CompoundControlClass&GT; compoundView&GT; myTextView
  • CompoundControlClass&GT; dynBut

我想

  • CompoundControlClass&GT; myTextView
  • CompoundControlClass&GT; dynBut

基本上代码和XML只是一个唯一的View。 我错过了什么?

答案基于D Yao的反馈----------------------

诀窍是在主布局中包含复合组件,而不是直接引用它。

activity_main.xml中

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <include layout="@layout/comound"
        android:id="@+id/compoundView"
        android:layout_alignParentBottom="true"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"/>
</RelativeLayout>

mainActivity.java

public class MainActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        CompoundControlClass c = (CompoundControlClass) this.findViewById(R.id.compoundView);
        c.addAView(this);
    }  
}

CompoundControlClass.java

public class CompoundControlClass extends LinearLayout {
    public CompoundControlClass(Context context) {
        super(context);
    }
    public CompoundControlClass(Context context, AttributeSet attrs) {
        super(context, attrs);
    }
    public CompoundControlClass(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    public void addAView(Context context){
         ImageView iv = new ImageView(context);                    
         iv.setImageResource(R.drawable.airhorn);
         addView(iv);
    }
}

compound.xml

<com.sounddisplaymodule.CompoundControlClass    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/compoundView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" > 
    <TextView
        android:layout_width="110dp" 
        android:layout_height="wrap_content"
        android:gravity="right"
        android:textSize="40sp"
        android:textStyle="bold"
        android:text="0:00"  />     
</com.sounddisplaymodule.CompoundControlClass>

1 个答案:

答案 0 :(得分:0)

为什么不直接在linearlayout上调用addView?根据您列出的需求,我认为不需要CompoundControlClass。

LinearLayout v = (LinearLayout)findViewById(R.id.compoundView);
v.addView(dynBut);

在这种情况下,v将包含myTextView,然后是dynBut。

如果您希望添加其他功能,因此确实需要创建复合控件类,只需将构造函数保留为s​​uper(etc)并删除其余部分

然后你的xml看起来像这样:

<com.yourpackage.CompoundControlClass xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/compoundView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >
    <TextView android:id="@+id/myTextView" 
        android:layout_width="110dp" 
        android:layout_height="wrap_content"
        android:text="000"  />
</com.yourpackage.CompoundControlClass>

您还必须确保您的CompoundControlClass.java包含适当的构造函数,该构造函数同时接受上下文和属性集。

然后,在您的java中,在调用setContentView之后,您可以执行以下操作:

CompoundControlClass c = (CompoundControlClass)findViewById(R.id.compoundView);
Button b = new Button(context);
//setup b here or inflate your button with inflater
c.addView(b);

这会给你理想的层次结构。