我动态创建了单选按钮,并将它们设置在单选按钮组中,它工作正常,但是当我单击单选按钮获取值但是onclick不起作用时,这里是代码:在此单击选中的更改时listner没有任何反应我也试着用它来显示onclick工作与否,但没有任何打印。请提前帮助谢谢。
try {
Thread.sleep(1000);
voterNA=dbcon.GetVoterNA(id);
LinearLayout ll=new LinearLayout(context);
ll.setOrientation(LinearLayout.VERTICAL);
ImageView iv=null;//new ImageView(context);
LinearLayout.LayoutParams prams=new RadioGroup.LayoutParams(LayoutParams.MATCH_PARENT,LayoutParams.MATCH_PARENT);
prams.setMargins(2, 2, 2, 2);
rg=new RadioGroup(context);
ll.setLayoutParams(prams);
rg.setBackgroundColor(Color.LTGRAY);
rg.setLayoutParams(prams);
rg=dbcon.showNationalCan(rg, context,iv,voterNA);
ll.addView(rg);
((ViewGroup)findViewById(R.id.NRG)).addView(ll);
final RadioGroup rg1=(RadioGroup)findViewById(R.id.NRG);
rg1.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
// TODO Auto-generated method stub
for(int i=0; i<rg.getChildCount();i++)
{
RadioButton rbtn=(RadioButton)rg.getChildAt(i);
if(rbtn.getId()==checkedId)
{
serial=rbtn.getId();
Toast.makeText(context, serial, 1).show();
flag=true;
return;
}
else
{
Toast.makeText(context, "Else", 1).show();
rbtn.setChecked(false);
}
}
}
});
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}