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

我在一个 RadioGroup里面有两个 RadioButton。我要把 OnClickListener设在那些 RadioButton上。根据单击哪个 RadioButton,我想改变一个 EditText的文本。我怎么才能做到呢?

226667 次浏览

希望这个能帮到你。

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

我认为一个更好的方法是使用 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
}
});

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

<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-单选按钮

 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();
}
});

以防有人纠结于这个公认的答案:

有不同的 OnCheckedChangeListener-Interfaces。

import android.widget.CompoundButton.OnCheckedChangeListener;

import android.widget.RadioGroup.OnCheckedChangeListener;

在添加 Ricky 的片段时,我犯了一些错误:

RadioGroup 类型中的 setOnCheckedChangeListener (RadioGroup.OnCheckedChangeListener)方法不适用于参数(new CompoundButton.OnCheckedChangeListener (){})

可以用阿里的回答修正:

new RadioGroup.OnCheckedChangeListener()

问题是关于 探测哪个单选按钮被点击,这是如何你可以得到哪个按钮被点击

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

由于这个问题不是 Java 特有的,我想补充一下如何在 科特林中实现它:

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的有关电台集团。要以这种方式使用它,您需要在活动的 Kotlin 文件中导入 kotlinx.android.synthetic.main.your_layout_name.*。还要注意,如果 radioGroup lambda 参数没有使用,那么可以用 _(下划线)替换它,因为 Kotlin 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()
});

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

希望这个能帮到你,谢谢!