3

对不起,如果这与膨胀的大量问题/答案是多余的,但我无法解决我的问题。

我有一个复合视图(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>dynBut

XML 中的原始 TextView 消失了。

如果 ROOT 是这个并且 ATTACH 是真的,我有以下层次结构:

  • CompoundControlClass>compoundView>myTextView
  • CompoundControlClass>dynBut

我想拥有

  • CompoundControlClass>myTextView
  • CompoundControlClass>dynBut

基本上代码和 XML 只是一个独特的视图。我严重错过了什么?

答案基于 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);
    }  
}

复合控制类.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);
    }
}

复合.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>
4

1 回答 1

1

为什么不在线性布局上调用 addView 呢?根据您列出的需求,我认为不需要 CompoundControlClass。

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

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

如果您希望添加其他功能并因此真的需要创建复合控件类,只需将构造函数保留为 super(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 包含适当的构造函数,该构造函数同时接受 Context 和属性集。

然后,在您的 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);

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

于 2012-08-22T19:38:28.780 回答