如何在Android中的单选按钮上设置OnClickListener?


Answers:


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 2014年

是的,我会使用radiogroup,除非它不能正常工作,除非它是xml中的直接父级,而且我不能将其保留为直接父级,因为这个愚蠢的单选按钮无法对齐到中心,因此我不得不将其封装在linearlayout中……
Jaxx0rr

您可以通过将android:gravity =“ center”放在RadioGroup标记下的xml中来尝试使单选按钮居中。@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
就像魅力一样工作,别忘了在点击监听器上的最后一个花括号之后添加分号
不可侵犯”的2014年

虽然过时但好用。可接受的答案更精简,但不能解决用户选择已选择的内容的情况。这样处理。可耻的是,无线电组侦听器不考虑“已更改”就不会处理“ 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
groupRadioButton rb=(RadioButton)group.findViewById(checkedId);
人工愚蠢中

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

您还可以android:onClick="onRadioButtonClicked"<RadioButton/>标记中通过XML布局添加侦听器:

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

有关详细信息,请参见Android开发者SDK-单选按钮


7

以防万一有人在为接受的答案而苦苦挣扎:

有不同的OnCheckedChangeListener接口。我添加到第一个,以查看是否已更改CheckBox。

import android.widget.CompoundButton.OnCheckedChangeListener;

import android.widget.RadioGroup.OnCheckedChangeListener;

从Ricky添加代码片段时,我遇到了错误:

RadioGroup类型的方法setOnCheckedChangeListener(RadioGroup.OnCheckedChangeListener)不适用于参数(new 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_idandroid:id有关无线电组的分配。要以这种方式使用它,您将需要导入kotlinx.android.synthetic.main.your_layout_name.*活动的Kotlin文件。另请注意,如果radioGroup未使用lambda参数,_则从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()          
        });

请提供此答案的说明,而不是简单地发布代码。
ScoobyDrew19年

最后一行必须是:“ String slectedValue = radioButton.getText()。toString()”
Web.11

0

对于Kotlin,这里添加了lambda表达式并优化了代码。

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

希望这会帮助你。谢谢!

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.