是否有一个简单的方法来获得在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>

如果用户选择选项3,我想获取索引2。


当前回答

你可以简单地

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

private RadioGroup GrupName;
private RadioButton NameButton;

-在onCreate方法中设置视图id

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

-取选中的单选按钮id using

int id = GroupName.getCheckedRadioButtonId();

-使用id来匹配按钮选择视图

NameButton = (RadioButton) findViewById(id);

-最终得到单选按钮的值

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

ps:如果你想要一个int值,那么你可以强制转换它

int valueExpectedIn = Integer.parseInt(valueExpected);

其他回答

就用这个吧:

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

//获取所选项目的id

int selectedID = myRadioGroup.getCheckedRadioButtonId();

//获取所选项目的视图

View selectedView = (View)findViewById( selectedID);
 int index_selected = radio_grp.indexOfChild(radio_grp
                .findViewById(radio_grp.getCheckedRadioButtonId()));

你所需要做的就是先给你的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

干杯!

你应该可以这样做:

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

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

要在RadioGroup上获得选定的RadioButton文本:

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