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
- MaterialButton
- ArrayList
- RealtimeDB
- nav_graph
- 뷰바인딩
- lifecyclescope
- 랜덤ID
- firebase
- textview
- EditText
- 안드로이드 스튜디오
- 안드로이드
- 코틀린
- Imageview
- androidstudio
- ButtonWithButton
- button
- FRAGMENT
- BottomSheetDialog
- ROOM
- firebasefunctions
- 팝업액티비티
- ViewModel
- Android
- OutlinedButton
- 안드로이드스튜디오
- 밑줄
- Dialog
- Activity
- Kotlin
Archives
- Today
- Total
안드로이드 앱 개발
CheckBox에 setOnCheckedChangeListner 달기 본문
첫 번째 방법. 람다식 사용
//all check box
binding.checkAll.setOnCheckedChangeListener { buttonView, isChecked ->
when (isChecked){
true -> mShowShortToast("전체 체크됨")
false -> mShowShortToast("전체 체크 해제됨")
}
}
두 번째 방법. inner class로 리스너 만들어서 사용 (여러 개 체크박스 있을때 쓰면 사용하면 될 듯
1. inner class 만들고
inner class CheckBoxListener:CompoundButton.OnCheckedChangeListener{
override fun onCheckedChanged(buttonView: CompoundButton?, isChecked: Boolean) {
when (buttonView){
binding.checkAll ->
mShowShortToast("체크")
}
}
}
2. 사용
binding.checkAll.setOnCheckedChangeListener(CheckBoxListener())
'코틀린(Kotlin)공부' 카테고리의 다른 글
MaterialDatePicker - Kotlin (0) | 2021.05.02 |
---|---|
kotlin에서 list, arraylist의 groupby (0) | 2021.04.27 |
Coroutine 사용 방법 (0) | 2021.04.09 |
BottomSheetDialog_Modal - Kotlin (0) | 2021.03.29 |
for문 - Kotlin (0) | 2021.03.29 |