วิธีรับดัชนีที่เลือกของ RadioGroup ใน Android


213

มีวิธีง่ายๆในการรับดัชนีที่เลือกของ 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.

คำตอบ:


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ตั้งค่าคุณลักษณะ
neuront

@BP ฉันมีข้อสงสัยเหมือนกันในการเข้าถึงปุ่มตัวเลือกเมื่อไม่มีการตั้งค่าพาเรนต์หรือรหัสปุ่ม
Killer

2
@neuront ตราบใดที่คุณใช้ radioGroup.findViewById (radioButtonID) มันจะทำงานได้ RadioGroup ได้ตั้งค่า 1, 2, 3, 4 และอื่น ๆ เป็น ID ของมุมมองดังนั้นหากคุณค้นหาภายในบริบทของมันจะใช้งานได้
Reinherd

สิ่งนี้จะไม่ทำงานหากมีการตั้งค่าเริ่มต้น (และไม่ถูกแตะต้องโดยผู้ใช้) RadioButton
Ninja Coding

2
@NinjaCoding หากคุณทำผิดแบบเดียวกับฉันคุณต้องตั้งค่าปุ่มตัวเลือกเริ่มต้น (เริ่มต้น) โดยเรียก radioGroup.check (selectedRadioButton.id) ไม่ใช่ radioButton.setChecked (จริง)
Lensflare

108

สิ่งนี้น่าจะใช้ได้

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

5
ใช้ getActivity (). findViewById () ถ้าคุณใช้ในส่วน
Sanjeet A

56

คุณอาจมีการอ้างอิงถึงกลุ่มวิทยุและใช้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
    }
}

ใช่นี่คือรหัสของปุ่มตัวเลือก แต่สิ่งที่เกี่ยวกับดัชนีของปุ่มตัวเลือกในกลุ่มวิทยุ?
John Boker

ฉันสามารถรับรหัสฉันต้องการดัชนีพวกเขาจะแตกต่างกัน
John Boker

คุณหมายถึงอะไรโดยดัชนี? อยู่ในมุมมองรายการหรือไม่
Stefan Bossbaly

ถ้าฉันมี 5 radiobuttons ใน radiogroup และผู้ใช้เลือกอันที่ 3 ที่ฉันอยากได้ 2 ดัชนีของ radiobutton ที่เลือกใน radiogroup นี่ไม่ใช่มุมมองรายการ
John Boker

เพียงชี้แจงให้ชัดเจนหากผู้ใช้เลือกปุ่มที่ 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);
            }
        });

มันใช้งานได้! แต่ฉันไม่เข้าใจว่าทำไมเราต้องใช้ "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 อันงดงามนี้คุณจะสามารถดึงค่าของมันโดยใช้รหัสที่คุณให้มา

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

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

- ใช้รหัส radiobutton ที่เลือกโดยใช้

int id = GroupName.getCheckedRadioButtonId();

ใช้รหัสเพื่อให้ตรงกับมุมมองที่เลือกไว้

NameButton = (RadioButton) findViewById(id);

- สุดท้ายรับค่าของปุ่มตัวเลือก

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

--- PS: หากคุณต้องการค่า INT จากนั้นคุณสามารถโยนมันได้

int valueExpectedIn = Integer.parseInt(valueExpected);

1

นี่คือส่วนขยายKotlinเพื่อให้ได้ตำแหน่งที่ถูกต้องแม้ว่ากลุ่มของคุณจะมี TextView หรือ RadioButton ใด ๆ ก็ตาม

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
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.