我想在我的Android应用程序的java代码中动态创建Radio组和单选按钮。
答案 0 :(得分:0)
我不确定您是否可以向TextView
添加RadioGroup
,但您可以尝试:
RadioGroup rg = new RadioGroup(getContext());
RadioButton rb1 = new RadioButton(getContext());
RadioButton rb2 = new RadioButton(getContext());
TextView tv = new TextView(getContext());
rg.addView(rb1);
rg.addView(rb2);
rg.addView(tv);