คำถามติดแท็ก radio-group

17
วิธีรับดัชนีที่เลือกของ RadioGroup ใน Android
มีวิธีง่ายๆในการรับดัชนีที่เลือกของ 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> …
213 java  android  xml  radio-group 

8
วิธีการตั้งค่าปุ่มตัวเลือกที่ตรวจสอบเป็นค่าเริ่มต้นในกลุ่มวิทยุ?
ฉันได้สร้าง RadioGroupและRadioButtonไดนามิกดังต่อไปนี้: RadioGroup radioGroup = new RadioGroup(context); RadioButton radioBtn1 = new RadioButton(context); RadioButton radioBtn2 = new RadioButton(context); RadioButton radioBtn3 = new RadioButton(context); radioBtn1.setText("Less"); radioBtn2.setText("Normal"); radioBtn3.setText("More"); radioBtn2.setChecked(true); radioGroup.addView(radioBtn1); radioGroup.addView(radioBtn2); radioGroup.addView(radioBtn3); นี่คือขั้นตอนที่radioBtn2.setChecked(true);ทำให้เกิดradioBtn2การตรวจสอบเสมอ นั่นหมายความว่าฉันไม่สามารถยกเลิกการเลือกได้radioBtn2โดยตรวจสอบปุ่มตัวเลือกสองปุ่มอื่น ๆ ( radioBtn1,radioBtn3 ) ฉันต้องการทำให้RadioGroupสามารถตรวจสอบปุ่มตัวเลือกได้ครั้งละหนึ่งปุ่มเท่านั้น (ตอนนี้สามารถตรวจสอบปุ่มวิทยุได้สองปุ่มพร้อมกัน) ฉันจะแก้ปัญหานี้ได้อย่างไร?

5
กลุ่มปุ่มตัวเลือกหลายกลุ่มในรูปแบบเดียว
เป็นไปได้ไหมที่จะมีกลุ่มปุ่มตัวเลือกหลายกลุ่มในรูปแบบเดียว? โดยปกติการเลือกปุ่มเดียวจะเป็นการยกเลิกการเลือกก่อนหน้านี้ฉันแค่ต้องยกเลิกการเลือกกลุ่มใดกลุ่มหนึ่ง <form> <fieldset id="group1"> <input type="radio" value=""> <input type="radio" value=""> </fieldset> <fieldset id="group2"> <input type="radio" value=""> <input type="radio" value=""> <input type="radio" value=""> </fieldset> </form>
113 html  forms  radio-group 

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

20
วิธีการจัดกลุ่ม RadioButton จาก LinearLayouts ที่แตกต่างกัน?
ฉันสงสัยว่าเป็นไปได้หรือไม่ที่จะจัดกลุ่มแต่ละซิงเกิลRadioButtonในเอกลักษณ์ที่RadioGroup คงโครงสร้างเดียวกัน โครงสร้างของฉันมีลักษณะดังนี้: LinearLayout_main LinearLayout_1 RadioButton1 LinearLayout_2 RadioButton2 LinearLayout_3 RadioButton3 ที่คุณสามารถดูตอนนี้แต่ละคนเป็นเด็กที่แตกต่างกันRadioButton LinearLayoutฉันลองใช้โครงสร้างด้านล่าง แต่ไม่ได้ผล: Radiogroup LinearLayout_main LinearLayout_1 RadioButton1 LinearLayout_2 RadioButton2 LinearLayout_3 RadioButton3
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.