Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Kotlin
- FRAGMENT
- firebasefunctions
- Imageview
- button
- firebase
- ButtonWithButton
- nav_graph
- Activity
- 안드로이드스튜디오
- textview
- 코틀린
- ArrayList
- 랜덤ID
- OutlinedButton
- RealtimeDB
- 팝업액티비티
- 안드로이드
- ROOM
- androidstudio
- 밑줄
- BottomSheetDialog
- Dialog
- ViewModel
- EditText
- Android
- 안드로이드 스튜디오
- MaterialButton
- lifecyclescope
- 뷰바인딩
Archives
- Today
- Total
안드로이드 앱 개발
RadioGroup에 checkedChangeListener 달기 본문
RadioGroup rg = (RadioGroup)findViewById(R.id.radioGroup1);
final TextView tv = (TextView)findViewById(R.id.textView2);
rg.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
String result;
if(checkedId == R.id.radio3){
tv.setText("정답");
}else{
tv.setText("오답");
}
}
});
//코틀린버전
binding.radioGroup.setOnCheckedChangeListener(RadioGroup.OnCheckedChangeListener { group, checkedId ->
if (checkedId == binding.maleRb.id){
viewModel.gender = "남"
Log.d(TAG, "사장님 성별 : " + viewModel.gender)
} else {
viewModel.gender = "여"
Log.d(TAG, "사장님 성별 : " + viewModel.gender)
}
})