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
- button
- Activity
- Kotlin
- MaterialButton
- RealtimeDB
- textview
- OutlinedButton
- ButtonWithButton
- 안드로이드스튜디오
- Dialog
- firebase
- FRAGMENT
- 랜덤ID
- lifecyclescope
- ROOM
- ArrayList
- BottomSheetDialog
- 팝업액티비티
- androidstudio
- 코틀린
- 뷰바인딩
- 안드로이드
- 안드로이드 스튜디오
- nav_graph
- Android
- 밑줄
- firebasefunctions
- ViewModel
- Imageview
- EditText
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