gpt4 book ai didi

android - 以编程方式创建 RadioButtons

转载 作者:IT老高 更新时间:2023-10-28 22:05:27 26 4
gpt4 key购买 nike

我想创建一系列与 Android 应用中的字符串数组相对应的单选按钮。单选按钮应切换要从数组显示的内容。我该怎么做?

最佳答案

您必须将单选按钮添加到 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();
}
});
}

另一个动态创建单选按钮

的代码
<TableRow>
<RadioGroup
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/radiobuttons">
</RadioGroup>
</TableRow>

代码:

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

}

关于android - 以编程方式创建 RadioButtons,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6646442/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com