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。
あなたはこのようなことをすることができるはずです:
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();
これでうまくいくはずです。
int index = myRadioGroup.indexOfChild(findViewById(myRadioGroup.getCheckedRadioButtonId()));
ラジオグループへの参照を持ち、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
}
}
これを試して
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);
}
});
OnCheckedChangeListenerを使うことも、 getCheckedRadioButtonId() を使うこともできます。
あなたが使用することができます:
RadioButton rb = (RadioButton) findViewById(rg.getCheckedRadioButtonId());
それは私のためにこのように完璧に働いた:
RadioGroup radioGroup = (RadioGroup) findViewById(R.id.radio_group);
int radioButtonID = radioGroup.getCheckedRadioButtonId();
RadioButton radioButton = (RadioButton) radioGroup.findViewById(radioButtonID);
String selectedtext = (String) radioButton.getText();
//選択したアイテムのIDを取得するために使用
int selectedID = myRadioGroup.getCheckedRadioButtonId();
//選択したアイテムのビューを取得します
View selectedView = (View)findViewById( selectedID);
必要なのは、最初に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
乾杯!
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();
}
});
int index_selected = radio_grp.indexOfChild(radio_grp
.findViewById(radio_grp.getCheckedRadioButtonId()));
簡単にできます
-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 VALUEが必要な場合は、キャストできます
int valueExpectedIn = Integer.parseInt(valueExpected);
これを使うだけです:
int index = 2;
boolean option3Checked = radioGroup.getCheckedRadioButtonId() == radioGroup.getChildAt(2).getId();
できるよ
findViewById
ラジオグループから。
これがサンプルです。
((RadioButton)my_radio_group.findViewById(R.id.radiobtn_veg)).setChecked(true);