จะตั้งค่า OnClickListener บน RadioButton ใน Android ได้อย่างไร


110

ฉันมีสองRadioButtonตัวใน a RadioGroup. ฉันต้องการตั้งค่าOnClickListenerบนRadioButtons เหล่านั้น ขึ้นอยู่กับว่าRadioButtonคลิกใดฉันต้องการเปลี่ยนข้อความของEditTextไฟล์. ฉันจะบรรลุเป้าหมายนี้ได้อย่างไร?

คำตอบ:


234

ฉันคิดว่าวิธีที่ดีกว่าคือการใช้RadioGroupและตั้งค่าฟังก์ชั่นนี้เพื่อเปลี่ยนแปลงและอัปเดตViewตามนั้น (ช่วยให้คุณมีผู้ฟัง 2 หรือ 3 หรือ 4 ฯลฯ )

    RadioGroup radioGroup = (RadioGroup) findViewById(R.id.yourRadioGroup);        
    radioGroup.setOnCheckedChangeListener(new OnCheckedChangeListener() 
    {
        @Override
        public void onCheckedChanged(RadioGroup group, int checkedId) {
            // checkedId is the RadioButton selected
        }
    });

2
ไม่ได้ผลสำหรับฉัน Eclipse แนะนำให้ฉันเพิ่ม @Override และแก้ไขแล้ว ขอบคุณ
Jack Franzen

ใช่ฉันจะใช้ radiogroup ยกเว้นมันจะไม่ได้ผลเว้นแต่จะเป็นพาเรนต์โดยตรงใน xml และฉันไม่สามารถเก็บไว้เป็นพาเรนต์โดยตรงได้เนื่องจาก radiobutton โง่ ๆ นี้ไม่สามารถจัดแนวให้อยู่ตรงกลางได้ดังนั้นฉันจึงต้องใส่ไว้ใน linearlayout ...
Jaxx0rr

คุณสามารถลองวางปุ่มเรดิโอไว้ตรงกลางโดยวางandroid: แรงโน้มถ่วง = "center"ใน xml ใต้แท็ก RadioGroup @RudolfRein
OuuGiii

เราจะทำอย่างไรถ้าปุ่มเรดิโอถูกสร้างขึ้นแบบไดนามิกและไม่มี id?
Arjun Issar

46

หวังว่านี่จะช่วยคุณได้ ...

RadioButton rb = (RadioButton) findViewById(R.id.yourFirstRadioButton);
rb.setOnClickListener(first_radio_listener);

และ

OnClickListener first_radio_listener = new OnClickListener (){
 public void onClick(View v) {
   //Your Implementaions...
 }
};

1
ใช้งานได้อย่างมีเสน่ห์อย่าลืมใส่อัฒภาคหลังวงเล็บปีกกาสุดท้ายของคุณในตัวฟังคลิก
inVINCEable

Oldie แต่ goodie คำตอบที่ยอมรับนั้นมีขนาดเล็กกว่า แต่ไม่ได้จัดการกับกรณีที่ผู้ใช้เลือกสิ่งที่เลือกไว้แล้ว นี้จัดการมัน ความอัปยศผู้ฟังกลุ่มวิทยุไม่จัดการ "setSelected" โดยไม่คำนึงถึง "เปลี่ยนแปลง"
JamieB

27
 radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener()
    {
        public void onCheckedChanged(RadioGroup group, int checkedId) {
            // checkedId is the RadioButton selected
            RadioButton rb=(RadioButton)findViewById(checkedId);
            textViewChoice.setText("You Selected " + rb.getText());
            //Toast.makeText(getApplicationContext(), rb.getText(), Toast.LENGTH_SHORT).show();
        }
    });

1
groupเป็นสิ่งจำเป็นใน RadioButton rb=(RadioButton)group.findViewById(checkedId);
Artificial Stupidity

18

คำถามเกี่ยวกับการตรวจจับว่าปุ่มตัวเลือกใดถูกคลิกนี่คือวิธีที่คุณจะได้รับว่าปุ่มใดถูกคลิก

final RadioGroup radio = (RadioGroup) dialog.findViewById(R.id.radioGroup1);
        radio.setOnCheckedChangeListener(new OnCheckedChangeListener() {

            @Override
            public void onCheckedChanged(RadioGroup group, int checkedId) {

                View radioButton = radio.findViewById(checkedId);
                int index = radio.indexOfChild(radioButton);

                // Add logic here

                switch (index) {
                case 0: // first button

                    Toast.makeText(getApplicationContext(), "Selected button number " + index, 500).show();
                    break;
                case 1: // secondbutton

                    Toast.makeText(getApplicationContext(), "Selected button number " + index, 500).show();
                    break;
                }
            }
        });

10

คุณยังสามารถเพิ่ม Listener จากเค้าโครง XML: android:onClick="onRadioButtonClicked"ใน<RadioButton/>แท็กของคุณ

<RadioButton android:id="@+id/radio_pirates"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/pirates"
    android:onClick="onRadioButtonClicked"/>

ดูรายละเอียดSDK- Radio Buttonsสำหรับนักพัฒนา Android


7

ในกรณีที่มีคนอื่นกำลังดิ้นรนกับคำตอบที่ยอมรับ:

มี OnCheckedChangeListener-Interfaces ที่แตกต่างกัน ฉันเพิ่มเข้าไปในรายการแรกเพื่อดูว่า CheckBox มีการเปลี่ยนแปลงหรือไม่

import android.widget.CompoundButton.OnCheckedChangeListener;

เทียบกับ

import android.widget.RadioGroup.OnCheckedChangeListener;

เมื่อเพิ่มข้อมูลโค้ดจาก Ricky ฉันมีข้อผิดพลาด:

เมธอด setOnCheckedChangeListener (RadioGroup OnCheckedChangeListener) ในประเภท RadioGroup ไม่สามารถใช้ได้กับอาร์กิวเมนต์ (CompoundButton ใหม่ OnCheckedChangeListener () {})

สามารถแก้ไขได้ด้วยคำตอบจาก Ali:

new RadioGroup.OnCheckedChangeListener()

5

เนื่องจากคำถามนี้ไม่ได้เจาะจงเฉพาะ Java ฉันต้องการเพิ่มวิธีที่คุณสามารถทำได้ในKotlin :

radio_group_id.setOnCheckedChangeListener({ radioGroup, optionId -> {
        when (optionId) {
            R.id.radio_button_1 -> {
                // do something when radio button 1 is selected
            }
            // add more cases here to handle other buttons in the RadioGroup
        }
    }
})

นี่radio_group_idคือการมอบหมายandroid:idของ RadioGroup ที่เกี่ยวข้อง หากต้องการใช้วิธีนี้คุณจะต้องนำเข้าkotlinx.android.synthetic.main.your_layout_name.*ไฟล์ Kotlin ของกิจกรรมของคุณ โปรดทราบว่าในกรณีที่radioGroupไม่ได้ใช้พารามิเตอร์แลมบ์ดาก็สามารถแทนที่ด้วย_(ขีดล่าง) ได้ตั้งแต่ Kotlin 1.1


1
RadioGroup radioGroup = (RadioGroup) findViewById(R.id.yourRadioGroup);     
    radioGroup.setOnClickListener(v -> {
                        // get selected radio button from radioGroup
                        int selectedId = radioGroup.getCheckedRadioButtonId();
                        // find the radiobutton by returned id
                        radioButton =  findViewById(selectedId);
                        String slectedValue=radioButton.getText()          
        });

โปรดให้คำอธิบายสำหรับคำตอบนี้แทนที่จะโพสต์รหัส
ScoobyDrew18

บรรทัดสุดท้ายต้องเป็น: 'String slectedValue = radioButton.getText (). toString ()'
เว็บ 11

1

สำหรับ Kotlinนี่คือการเพิ่มนิพจน์แลมบ์ดาและปรับโค้ดให้เหมาะสม

   radioGroup.setOnCheckedChangeListener { radioGroup, optionId ->
        run {
            when (optionId) {
                R.id.radioButton1 -> {
                    // do something when radio button 1 is selected
                }
                R.id.radioButton2 -> {
                    // do something when radio button 2 is selected
                }
                // add more cases here to handle other buttons in the your RadioGroup
            }
        }
    }

หวังว่านี่จะช่วยคุณได้ ขอบคุณ!


ช่วยฉันได้มาก! ขอบคุณ!
Artur
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.