我在运行时构建布局,我必须为用户显示一个带有 4 个单选按钮的单选组,但有时我应该显示一个带有单选按钮的编辑字段,以便用户可以编写一些与该单选按钮相关的内容在编辑框中。我希望编辑字段出现在单选按钮旁边,。我尝试构建编辑字段,但它一直显示在单选组下,如果我将线性布局中的一个按钮与编辑文本分开,它就会超出单选组的范围。这是建立无线电组的代码
RadioGroup radioGroup = new RadioGroup(context);
radioGroup.setContentDescription(id);
for (int i = 0; i < vector.size(); i++) {
RadioButton radioButton = new RadioButton(context);
radioButton.setTextColor(Color.BLACK);
radioButton.setText("" + vector.get(i).getQ_text());
radioButton.setContentDescription(vector.get(i).getA_id());
radioButton.setTextSize(20);
radioButton.setTextColor(Color.parseColor("#A5462E"));
radioGroup.addView(radioButton);
radioGroup.setPadding(20, 0, 0, 0);
如何在运行时构建编辑字段以显示在单选按钮旁边。