본문 바로가기

Android

[Kotlin] Android studio radio group, radio button

Radio group

  • 라디오 그룹 안에 있는 라디오 버튼들은 서로 연관되어, 그룹 내에는 딱 한 버튼만 선택되도록 작동한다

라디오 버튼 기본값 체크하기

binding.csRg.check(binding.CSYesRadio.id)

라디오 버튼 값 가져오기 (using button id)

//radio btn
when(binding.csRg.checkedRadioButtonId){
    binding.CSNoRadio.id -> survey.resultOpen = "NO"
    else -> survey.resultOpen = "YES"
}