是否有一种简单的方法可以在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。
答案 0 :(得分:444)
你应该可以这样做:
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();
答案 1 :(得分:106)
这应该有效,
int index = myRadioGroup.indexOfChild(findViewById(myRadioGroup.getCheckedRadioButtonId()));
答案 2 :(得分:54)
您可以引用无线电组,并使用getCheckedRadioButtonId ()
获取已选中的单选按钮ID。看看here
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
}
}
答案 3 :(得分:22)
试试这个
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);
}
});
答案 4 :(得分:9)
您可以使用:
RadioButton rb = (RadioButton) findViewById(rg.getCheckedRadioButtonId());
答案 5 :(得分:9)
您可以使用OnCheckedChangeListener,也可以使用getCheckedRadioButtonId()
答案 6 :(得分:5)
以这种方式对我来说非常合适:
RadioGroup radioGroup = (RadioGroup) findViewById(R.id.radio_group);
int radioButtonID = radioGroup.getCheckedRadioButtonId();
RadioButton radioButton = (RadioButton) radioGroup.findViewById(radioButtonID);
String selectedtext = (String) radioButton.getText();
答案 7 :(得分: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
干杯!
答案 8 :(得分:5)
//用于获取所选项目的id
int selectedID = myRadioGroup.getCheckedRadioButtonId();
//获取所选项目的视图
View selectedView = (View)findViewById( selectedID);
答案 9 :(得分:4)
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();
}
});
答案 10 :(得分:2)
int index_selected = radio_grp.indexOfChild(radio_grp
.findViewById(radio_grp.getCheckedRadioButtonId()));
答案 11 :(得分:2)
晚些时候参加聚会,但是这里是@ Tarek360的Kotlin答案的简化形式,它满足了RadioGroup
可能包含非RadioButton的问题:
val RadioGroup.checkedIndex: Int
get() = children
.filter { it is RadioButton }
.indexOfFirst { it.id == checkedRadioButtonId }
如果您RadioFroup
肯定只有RadioButton
个,那么这可以很简单:
private val RadioGroup.checkedIndex =
children.indexOfFirst { it.id == checkedRadioButtonId }
那么您就没有findViewById
的开销了。
答案 12 :(得分:1)
你可以做到
findViewById
来自广播组。
这是样本:
((RadioButton)my_radio_group.findViewById(R.id.radiobtn_veg)).setChecked(true);
答案 13 :(得分:1)
只需使用:
int index = 2;
boolean option3Checked = radioGroup.getCheckedRadioButtonId() == radioGroup.getChildAt(2).getId();
答案 14 :(得分: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);
答案 15 :(得分: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
}
答案 16 :(得分:0)
科特琳:
val selectedIndex = radioButtonGroup?.indexOfChild(
radioButtonGroup?.findViewById(
radioButtonGroup.getCheckedRadioButtonId())
)
答案 17 :(得分: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();
}
});