执行RadioGroup的check(Id)方法,会触发onCheckedChanged多次

在百度下找到解决方法,特此记录下,把RadioGroup下的所有子View(RadioButton)的Checked设置为true,经过测试发现,的确可以解决onCheckChanged的多次执行
方法一:

((RadioButton)mRgBottomTag.findViewById(R.id.rb_video)).setChecked(true);
((RadioButton)mRgBottomTag.findViewById(R.id.rb_Audio)).setChecked(true);
等等...

方法二:

for (int i = 0; i < mRgBottomTag.getChildCount(); ++i){
    RadioButton rb = (RadioButton) mRgBottomTag.getChildAt(i);
    rb.setChecked(true);
}

上面两种方法执行后,发现RadioGroup的Check(id)方法不起作用了,小菜鸟不知道怎么解决这个问题,但是又想让app一启动就选中某个RadioButton,小菜鸟的解决是去掉上面的方法
方法一:

((RadioButton)mRgBottomTag.findViewById(R.id.rb_video)).setChecked(true);

方法二:

for (int i = 0; i < mRgBottomTag.getChildCount(); ++i){
    RadioButton rb = (RadioButton) mRgBottomTag.getChildAt(i);
    if(rb.getId() == R.id.rb_video){
        rb.setChecked(true);   
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值