RadioButton - 여러 종류의 선택 항목에서 한가지 선택
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1번"
/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="2번"
/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="3번"
/>
</LinearLayout>
라디오 버튼의 3가지를 단독으로 만들 었을 때 버튼 3개를 모두 중복으로 선택 가능
<RadioGroup
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1번"
/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="2번"
/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="3번"
/>
</RadioGroup>
중복이 불가능 하게 한 가지의 버튼만 선택할 경우 RadioGroup 안에 RadioButton 작성
'Android' 카테고리의 다른 글
Android] Logcat을 이용한 로그 작성 및 보기 (1) | 2022.02.15 |
---|---|
Android] Intent를 이용하여 데이터 넘기기 (0) | 2022.02.14 |
Android] Toast 출력, 위치 설정 (0) | 2022.01.31 |
Android] Button 클릭 이벤트 처리 (0) | 2022.01.24 |
Android] Intent (0) | 2022.01.24 |