«radio-group» 태그된 질문

17
안드로이드에서 라디오 그룹의 선택된 인덱스를 얻는 방법
안드로이드에서 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 …
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) 을 …

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 RadioButton1 LinearLayout_2 RadioButton2 LinearLayout_3 RadioButton3 보시다시피 이제 각각 RadioButton은 다른 LinearLayout. 아래 구조를 사용해 보았지만 작동하지 않습니다. 라디오 그룹 LinearLayout_main LinearLayout_1 RadioButton1 LinearLayout_2 RadioButton2 LinearLayout_3 RadioButton3
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.