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。

回答:


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年

@BP親またはラジオボタンIDが設定されていない場合、ラジオボタンへのアクセスに同じ疑問があります。
キラー

2
@neuront radioGroup.findViewById(radioButtonID)を実行する限り、機能します。RadioGroupは1、2、3、4などをビューのIDとして設定するため、そのコンテキスト内でそれらを検索する場合は機能します
16:15の

これは、デフォルトの(ユーザーが操作しない)RadioButtonが設定されている場合は機能しません。
Ninja Coding

2
@NinjaCoding私と同じ間違いをした場合は、radioButton.setChecked(true)ではなく、radioGroup.check(selectedRadioButton.id)を呼び出して、デフォルト(初期)ラジオボタンを設定する必要があります。
Lensflare 2018年

108

これはうまくいくはずです

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

5
フラグメントで使用している場合は、getActivity()。findViewById()を使用します。
Sanjeet A 2015

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、2011年

IDを取得できます。インデックスが必要です。これらは異なります。
John Boker

インデックスとはどういう意味ですか?それはリストビューにありますか?
Stefan Bossbaly

ラジオグループに5つのラジオボタンがあり、ユーザーが取得したい3番目のラジオボタンを2選択した場合、ラジオグループで選択したラジオボタンのインデックスです。これはリストビューではありません。
John Boker、2011年

ユーザーが2番目のボタンを取得したい3番目のボタンを選択したかどうかを明確にするだけですか?ラジオグループとボタンにはインデックスがありません。
Stefan Bossbaly

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



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バリューが必要な場合は、キャストできます

int valueExpectedIn = Integer.parseInt(valueExpected);

1

これは、グループにTextViewまたは非ラジオボタンが含まれている場合でも正しい位置を取得するためのKotlin拡張機能です。

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

コトリン:

val selectedIndex = radioButtonGroup?.indexOfChild(
  radioButtonGroup?.findViewById(
    radioButtonGroup.getCheckedRadioButtonId())
)

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();
        }
    });
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.