如何在Android中获取RadioGroup的选定索引


213

是否有一种简单的方法来获取Android中RadioGroup的选定索引,还是我必须使用OnCheckedChangeListener来侦听更改并保留一些保留最后选定索引的内容?

范例xml:

<RadioGroup android:id="@+id/group1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical">
    <RadioButton android:id="@+id/radio1" android:text="option 1" android:layout_width="wrap_content" android:layout_height="wrap_content" />
    <RadioButton android:id="@+id/radio2" android:text="option 2" android:layout_width="wrap_content" android:layout_height="wrap_content" />
    <RadioButton android:id="@+id/radio3" android:text="option 3" android:layout_width="wrap_content" android:layout_height="wrap_content" />
    <RadioButton android:id="@+id/radio4" android:text="option 4" android:layout_width="wrap_content" android:layout_height="wrap_content" />
    <RadioButton android:id="@+id/radio5" android:text="option 5" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</RadioGroup>

如果用户选择option 3我要获取索引,请2。

Answers:


479

您应该能够执行以下操作:

int radioButtonID = radioButtonGroup.getCheckedRadioButtonId();
View radioButton = radioButtonGroup.findViewById(radioButtonID);
int idx = radioButtonGroup.indexOfChild(radioButton);

如果RadioGroup包含其他视图(如TextView),则该indexOfChild()方法将返回错误的索引。

要在上获取选定的RadioButton文本RadioGroup

 RadioButton r = (RadioButton) radioButtonGroup.getChildAt(idx);
 String selectedtext = r.getText().toString();

11
但是,如果没有android:id设置这些按钮的属性怎么办?
神经元2012年

当没有设置父级或单选按钮ID时,@ BP我在访问单选按钮时也有同样的疑问。
Killer

2
@neuront只要您执行radioGroup.findViewById(radioButtonID),它就会起作用。RadioGroup确实将1、2、3、4等设置为视图的ID,因此,如果您确实在视图的上下文中搜索它们,它将起作用
Reinherd

如果设置了默认(并且未被用户触摸)RadioButton,则此功能不起作用。
Ninja Coding

2
@NinjaCoding如果您犯了与我相同的错误,则必须通过调用radioGroup.check(selectedRadioButton.id)而不是radioButton.setChecked(true)来设置默认(初始)单选按钮。
Lensflare

108

这应该工作,

int index = myRadioGroup.indexOfChild(findViewById(myRadioGroup.getCheckedRadioButtonId()));

5
如果在Fragment中使用,请使用getActivity()。findViewById()。
Sanjeet A

56

您可以参考单选组并用于getCheckedRadioButtonId ()获取选中的单选按钮ID。在这里看看

RadioGroup radioGroup = (RadioGroup)findViewById(R.id.radio_group);

然后,当您需要获取选定的单选选项时。

int checkedRadioButtonId = radioGroup.getCheckedRadioButtonId();
if (checkedRadioButtonId == -1) {
    // No item selected
}
else{
    if (checkedRadioButtonId == R.id.radio_button1) {
        // Do something with the button
    }
}

是的,这是选中的单选按钮的ID,但是单选按钮在单选组中的索引又如何呢?
John Boker

我可以获取ID,我想要索引,它们是不同的。
John Boker

索引是什么意思?在列表视图中吗?
Stefan Bossbaly 2011年

如果我在单选按钮组中有5个单选按钮,并且用户选择了我想要得到的第3个单选按钮,则该单选按钮在单选按钮组中的索引。这不是一个列表视图。
John Boker

只是为了澄清用户是否选择了想要获得第二个按钮的第三个按钮?单选组和按钮没有索引。
Stefan Bossbaly 2011年

27

试试这个

        RadioGroup  group= (RadioGroup) getView().findViewById(R.id.radioGroup);
        group.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(RadioGroup radioGroup, int i) {
                View radioButton = radioGroup.findViewById(i);
                int index = radioGroup.indexOfChild(radioButton);
            }
        });

这是可行的!但我不明白为什么我们需要使用“单选按钮”查看..
来自Alexs


9

您可以使用:

RadioButton rb = (RadioButton) findViewById(rg.getCheckedRadioButtonId());

6

//用于获取所选商品的ID

int selectedID = myRadioGroup.getCheckedRadioButtonId();

//获取所选项目的视图

View selectedView = (View)findViewById( selectedID);

6

通过这种方式,它对我来说非常理想:

    RadioGroup radioGroup = (RadioGroup) findViewById(R.id.radio_group);
    int radioButtonID = radioGroup.getCheckedRadioButtonId();
    RadioButton radioButton = (RadioButton) radioGroup.findViewById(radioButtonID);
    String selectedtext = (String) radioButton.getText();

5

您所需要做的就是首先为RadioButton设置值,例如:

RadioButton radioButton = (RadioButton)findViewById(R.id.radioButton);      
radioButton.setId(1);        //some int value

然后每当选择这个特定的radioButton时,您都可以通过为其赋予的ID来获取其值

RadioGroup radioGroup = (RadioGroup)findViewById(R.id.radioGroup);                     
int whichIndex = radioGroup.getCheckedRadioButtonId(); //of course the radioButton
                                                       //should be inside the "radioGroup"
                                                       //in the XML

干杯!


5
radioSexGroup=(RadioGroup)findViewById(R.id.radioGroup);

  btnDisplay=(Button)findViewById(R.id.button);

  btnDisplay.setOnClickListener(new View.OnClickListener() {
     @Override
     public void onClick(View v) {
        int selectedId=radioSexGroup.getCheckedRadioButtonId();
        radioSexButton=(RadioButton)findViewById(selectedId);
        Toast.makeText(MainActivity.this,radioSexButton.getText(),Toast.LENGTH_SHORT).show();
     }
  });


2

只需使用此:

    int index = 2;
    boolean option3Checked = radioGroup.getCheckedRadioButtonId() == radioGroup.getChildAt(2).getId();

1

你可以做

findViewById

来自广播集团。

这是示例:

((RadioButton)my_radio_group.findViewById(R.id.radiobtn_veg)).setChecked(true);

1

你可以简单地

-从onCreate方法中声明单选组和单选按钮

private RadioGroup GrupName;
private RadioButton NameButton;

-在onCreate方法中设置视图ID

GrupName = (RadioGroup) findViewById(R.id.radioGroupid);

-获取使用选择的单选按钮ID

int id = GroupName.getCheckedRadioButtonId();

-使用ID匹配按钮选择的视图

NameButton = (RadioButton) findViewById(id);

-最终获得单选按钮的值

String valueExpected = NameButton.getText().toString();

--- PS:如果您想要一个整数值,则可以进行铸造

int valueExpectedIn = Integer.parseInt(valueExpected);

1

这是Kotlin扩展名,即使您的组中包含TextView或任何非RadoButton,它也能获得正确的位置

fun RadioGroup.getCheckedRadioButtonPosition(): Int {
    val radioButtonId = checkedRadioButtonId
    return children.filter { it is RadioButton }
        .mapIndexed { index: Int, view: View ->
            index to view
        }.firstOrNull {
            it.second.id == radioButtonId
        }?.first ?: -1
}


0
radioSexGroup = (RadioGroup) findViewById(R.id.radioSex);
btnDisplay = (Button) findViewById(R.id.btnDisplay);
btnDisplay.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
            // get selected radio button from radioGroup
            int selectedId = radioSexGroup.getCheckedRadioButtonId();
            // find the radiobutton by returned id
            radioSexButton = (RadioButton) findViewById(selectedId);
Toast.makeText(MainActivity.this,radioSexButton.getText(),Toast.LENGTH_SHORT).show();
        }
    });
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.