以编程方式创建RadioButtons

dul*_*026 26 android radio-button

我想创建一系列单选按钮,这些按钮对应于Android应用程序中的字符串数组.单选按钮应切换要从数组中显示的内容.我该怎么做呢?

Hus*_*ain 62

您必须将单选按钮添加到RadioGroup,然后添加RadioGrouplayout

我想念一些像提交的信息,但你的代码应该是这样的:

private void createRadioButton() {
    final RadioButton[] rb = new RadioButton[5];
    RadioGroup rg = new RadioGroup(this); //create the RadioGroup
    rg.setOrientation(RadioGroup.HORIZONTAL);//or RadioGroup.VERTICAL
    for(int i=0; i<5; i++){
        rb[i]  = new RadioButton(this);
        rg.addView(rb[i]); //the RadioButtons are added to the radioGroup instead of the layout
        rb[i].setText("Test");
    }
    ll.addView(rg);//you add the whole RadioGroup to the layout
    ll.addView(submit); 
    submit.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            for(int i = 0; i < 5; i++) { 
                rg.removeView(rb[i]);//now the RadioButtons are in the RadioGroup
            }  
            ll.removeView(submit);
            Questions();
        }
    });   
}
Run Code Online (Sandbox Code Playgroud)

动态创建的另一个代码 radiobutton

<TableRow>
    <RadioGroup
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:id="@+id/radiobuttons">
     </RadioGroup>
</TableRow>
Run Code Online (Sandbox Code Playgroud)

码:

public void makeRadioButtons(Vector tmpVector, int i, LinearLayout.LayoutParams lp)
{
     RadioButton rb = new RadioButton(this);
     rb.setText((String) tmpVector.elementAt(i));
     //rg is private member of class which refers to the radio group which I find
     //by id.
     rg.addView(rb, 0, lp);

}
Run Code Online (Sandbox Code Playgroud)