Вопросы с тегом «radio-group»

17
Как получить выбранный индекс радиогруппы в 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 …
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, установив …

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>
114 html  forms  radio-group 


20
Как сгруппировать RadioButton из разных LinearLayout?
Мне было интересно, можно ли сгруппировать каждый сингл RadioButtonв уникальную, RadioGroup сохраняя ту же структуру. Моя структура выглядит так: LinearLayout_main LinearLayout_1 RadioButton1 LinearLayout_2 RadioButton2 LinearLayout_3 RadioButton3 Как видите, теперь все RadioButtonдети разные LinearLayout. Я пробовал использовать приведенную ниже структуру, но она не работает: Радиогруппа LinearLayout_main LinearLayout_1 RadioButton1 LinearLayout_2 RadioButton2 LinearLayout_3 …
Используя наш сайт, вы подтверждаете, что прочитали и поняли нашу Политику в отношении файлов cookie и Политику конфиденциальности.
Licensed under cc by-sa 3.0 with attribution required.