动态添加Radiobutton

时间:2011-11-04 09:47:06

标签: android

我的XML文件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" 
android:id="@+id/sl"
>


<RadioGroup
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:id="@+id/rgc">
 </RadioGroup>


</LinearLayout>

Java文件

LinearLayout l1;
RadioGroup rg;
RadioButton rb[];
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    l1=(LinearLayout)findViewById(R.id.sl);
    rg=(RadioGroup)findViewById(R.id.rgc);


    rb=new RadioButton[4];
    for(int i=0;i<4;i++){
        rb[i]=new RadioButton(this);
        rb[i].setLayoutParams(new LinearLayout.LayoutParams(60,30));
        rb[i].setText(i+"aaaaaa");
        rg.addView(rb[i]);

    }

    l1.addView(rg);



}

当我运行此代码获取异常时“这个指定的孩子已经有了父母”。请告诉我朋友我的代码中有什么问题,并且请给我任何建议。

2 个答案:

答案 0 :(得分:2)

不要将rg添加到线性布局因为它的放射线组已存在于xml文件的linearlayout中

答案 1 :(得分:0)

试试这段代码,希望它会有所帮助

RadioGroup rg=(RadioGroup)findViewById(R.id.rgc);
        RadioButton rb;

        for(int i=0;i<4;i++)
        {
            rb=new RadioButton(this);
            rb.setText(i+"aaaaaa");
            rg.addView(rb,i,new ViewGroup.LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));

        }

        rg.invalidate();