如题,使用如下方法让radiogroup(rgRadioGroup)里面动态加载了三个radiobutton for(int i=0; i<3; i++)  
{  
            RadioButton tempButton = new RadioButton(this);  
            rdgRadioGroup.addView(tempButton, LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);  
          }
请问如何让这三个radiobutton中的任何一个显示为“选中”状态?  }    }