80,493
社区成员
发帖
与我相关
我的任务
分享
final int sWrapContent = LinearLayout.LayoutParams.WRAP_CONTENT;
RadioGroup mRadioGroup1 = new RadioGroup(this);
mRadioGroup1.setOrientation(RadioGroup.VERTICAL);
RadioButton mRadio1 = new RadioButton(this);
mRadio1.setText("帅哥");
mRadio1.setId(1001);
mRadio1.setChecked(true);
RadioGroup.LayoutParams mRadioParams = new RadioGroup.LayoutParams(sWrapContent,sWrapContent);
mRadioGroup1.addView(mRadio1, mRadioParams);