Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

my XML file

<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 file

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);



}

when I am running this code getting exception "this specified child already has a parent".Please tell me friends what is the problem in my code and kindly give me any suggestion's.

share|improve this question

2 Answers

up vote 3 down vote accepted

Just dont add rg to linear layout As it radiogroup is already present in the linearlayout in the xml file

share|improve this answer
@ekjyot...thanks a lot..... – sarath Nov 4 '11 at 10:20
U r WElcome @sarath – ekjyot Nov 4 '11 at 10:26

Try this code, Hope it will help

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(); 
share|improve this answer
...good suggestion..... – sarath Nov 4 '11 at 15:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.