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
- 팝업액티비티
- ButtonWithButton
- 안드로이드스튜디오
- EditText
- ArrayList
- firebase
- 밑줄
- 뷰바인딩
- BottomSheetDialog
- ViewModel
- 안드로이드 스튜디오
- textview
- FRAGMENT
- ROOM
- Kotlin
- Android
- Dialog
- 안드로이드
- OutlinedButton
- button
- nav_graph
- 코틀린
- lifecyclescope
- androidstudio
- Imageview
- Activity
- 랜덤ID
- firebasefunctions
- MaterialButton
- RealtimeDB
Archives
- Today
- Total
목록RadioGroup (1)
안드로이드 앱 개발
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.setOnChe..
안드로이드앱/RadioGroup
2021. 3. 20. 19:43