ฉันมีสองRadioButton
ตัวใน a RadioGroup
. ฉันต้องการตั้งค่าOnClickListener
บนRadioButton
s เหล่านั้น ขึ้นอยู่กับว่าRadioButton
คลิกใดฉันต้องการเปลี่ยนข้อความของEditText
ไฟล์. ฉันจะบรรลุเป้าหมายนี้ได้อย่างไร?
ฉันมีสองRadioButton
ตัวใน a RadioGroup
. ฉันต้องการตั้งค่าOnClickListener
บนRadioButton
s เหล่านั้น ขึ้นอยู่กับว่าRadioButton
คลิกใดฉันต้องการเปลี่ยนข้อความของEditText
ไฟล์. ฉันจะบรรลุเป้าหมายนี้ได้อย่างไร?
คำตอบ:
ฉันคิดว่าวิธีที่ดีกว่าคือการใช้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 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.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();
}
});
group
เป็นสิ่งจำเป็นใน RadioButton rb=(RadioButton)group.findViewById(checkedId);
คำถามเกี่ยวกับการตรวจจับว่าปุ่มตัวเลือกใดถูกคลิกนี่คือวิธีที่คุณจะได้รับว่าปุ่มใดถูกคลิก
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;
}
}
});
คุณยังสามารถเพิ่ม 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
ในกรณีที่มีคนอื่นกำลังดิ้นรนกับคำตอบที่ยอมรับ:
มี OnCheckedChangeListener-Interfaces ที่แตกต่างกัน ฉันเพิ่มเข้าไปในรายการแรกเพื่อดูว่า CheckBox มีการเปลี่ยนแปลงหรือไม่
import android.widget.CompoundButton.OnCheckedChangeListener;
เทียบกับ
import android.widget.RadioGroup.OnCheckedChangeListener;
เมื่อเพิ่มข้อมูลโค้ดจาก Ricky ฉันมีข้อผิดพลาด:
เมธอด setOnCheckedChangeListener (RadioGroup OnCheckedChangeListener) ในประเภท RadioGroup ไม่สามารถใช้ได้กับอาร์กิวเมนต์ (CompoundButton ใหม่ OnCheckedChangeListener () {})
สามารถแก้ไขได้ด้วยคำตอบจาก Ali:
new RadioGroup.OnCheckedChangeListener()
เนื่องจากคำถามนี้ไม่ได้เจาะจงเฉพาะ 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
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นี่คือการเพิ่มนิพจน์แลมบ์ดาและปรับโค้ดให้เหมาะสม
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
}
}
}
หวังว่านี่จะช่วยคุณได้ ขอบคุณ!