通过动态添加无线电组,但单选按钮是xml

时间:2016-05-24 03:39:50

标签: android radio-button radio-group

我有两个radiobutton,我需要动态添加radiogroup。 这该怎么做? 这是我的xml,谢谢

                    <RadioButton
                        android:id="@+id/radiotwo"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center"
                        android:checked="false"
                        android:text="b"
                        android:textSize="23dp" />
                   <RadioButton
                        android:id="@+id/radioone"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center"
                        android:checked="false"
                        android:text="a"
                        android:textSize="23dp" />

1 个答案:

答案 0 :(得分:0)

假设你想添加它的女巫布局是一个LinearLayout,你可以像这样添加一个RadioButton:

LinearLayout myLayout = findViewById(R.id.main);
RadioButton myButton = new RadioButton(this);
myButton.setLayoutParams(new LinearLayout.LayoutParams(
                                 LinearLayout.LayoutParams.FILL_PARENT,
                                 LinearLayout.LayoutParams.FILL_PARENT));
myLayout.addView(myButton);