Questions tagged «radio-group»

17
如何在Android中获取RadioGroup的选定索引
是否有一种简单的方法来获取Android中RadioGroup的选定索引,还是我必须使用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> 如果用户选择option 3我要获取索引,请2。
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 


20
如何从不同的LinearLayouts分组RadioButton?
我想知道是否可以将每个单独的分组RadioButton为一个唯一的RadioGroup 保持相同结构的分组。我的结构如下所示: LinearLayout_main LinearLayout_1 单选按钮1 LinearLayout_2 单选按钮2 LinearLayout_3 单选按钮3 如您所见,现在每个RadioButton都是不同的孩子LinearLayout。我尝试使用下面的结构,但是不起作用: 广播组 LinearLayout_main LinearLayout_1 单选按钮1 LinearLayout_2 单选按钮2 LinearLayout_3 单选按钮3

10
如何检查Android中的单选按钮中是否选中了单选按钮?
我需要设置验证,用户必须填写/选择页面中的所有详细信息。如果有任何字段为空,想要显示Toast message to fill.现在我需要RadioButton在RadioGroup.我尝试此代码中进行设置验证,但无法正常工作。建议我正确的方法。谢谢。 // get selected radio button from radioGroup int selectedId = gender.getCheckedRadioButtonId(); // find the radiobutton by returned id selectedRadioButton = (RadioButton)findViewById(selectedId); // do what you want with radioButtonText (save it to database in your case) radioButtonText = selectedRadioButton.getText().toString(); if(radioButtonText.matches("")) { Toast.makeText(getApplicationContext(), "Please select Gender", Toast.LENGTH_SHORT).show(); Log.d("QAOD", …
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.