我有两个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" />
答案 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);