znl_12 2013-04-08 07:28 采纳率: 0%
浏览 7169
已采纳

如何动态的添加 Radiobutton ?

XML 文件:

<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 文件:

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

我添加了Radiobutton,运行上面的代码后,出现异常:"this specified child already has a parent",代码有什么问题吗?

  • 写回答

2条回答 默认 最新

  • usniyo 2013-04-08 09:16
    关注

    findViewById()得到的是一个已经存在的view,你再把它放入其父view一次,自然会抛该view已存在的异常,除非你先把它从它父view中移除,但这不是你想要的吧?所以你得通过new RadioGroup(...)新生成一个,再添加。就像你new RadioButton(...)后再add一样。

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器