Как получить выбранный индекс радиогруппы в Android - PullRequest
194 голосов
/ 22 июня 2011

Есть ли простой способ получить выбранный индекс RadioGroup в Android или мне нужно использовать 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.

Ответы [ 13 ]

453 голосов
/ 22 июня 2011

Вы должны быть в состоянии сделать что-то вроде этого:

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();
106 голосов
/ 22 июня 2011

Это должно работать,

int index = myRadioGroup.indexOfChild(findViewById(myRadioGroup.getCheckedRadioButtonId()));
55 голосов
/ 22 июня 2011

Вы можете иметь ссылку на группу радиостанций и использовать getCheckedRadioButtonId (), чтобы получить проверенный идентификатор радиокнопки. Взгляните здесь

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
    }
}
23 голосов
/ 20 апреля 2015

попробуйте

        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);
            }
        });
10 голосов
/ 22 июня 2011

Вы можете использовать OnCheckedChangeListener или getCheckedRadioButtonId ()

9 голосов
/ 06 октября 2012

Вы можете использовать:

RadioButton rb = (RadioButton) findViewById(rg.getCheckedRadioButtonId());
6 голосов
/ 28 октября 2016

Для меня это сработало идеально:

    RadioGroup radioGroup = (RadioGroup) findViewById(R.id.radio_group);
    int radioButtonID = radioGroup.getCheckedRadioButtonId();
    RadioButton radioButton = (RadioButton) radioGroup.findViewById(radioButtonID);
    String selectedtext = (String) radioButton.getText();
6 голосов
/ 23 мая 2013

// используется для получения идентификатора выбранного элемента

int selectedID = myRadioGroup.getCheckedRadioButtonId();

// для просмотра выбранного элемента

View selectedView = (View)findViewById( selectedID);
5 голосов
/ 23 июля 2017
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();
     }
  });
5 голосов
/ 14 марта 2017

Все, что вам нужно, это сначала установить значения для вашего RadioButton, например:

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

, а затем, когда будет выбран этот пространственный radioButton, вы можете получить его значение с помощью идентификатора, который вы дали ему с помощью

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

Ура!

...