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
- ViewModel
- 밑줄
- 안드로이드
- ButtonWithButton
- Android
- firebasefunctions
- button
- MaterialButton
- 뷰바인딩
- firebase
- lifecyclescope
- 코틀린
- Kotlin
- textview
- Activity
- ArrayList
- FRAGMENT
- RealtimeDB
- 랜덤ID
- Imageview
- 안드로이드스튜디오
- 팝업액티비티
- nav_graph
- OutlinedButton
- androidstudio
- EditText
- BottomSheetDialog
- 안드로이드 스튜디오
- ROOM
- Dialog
Archives
- Today
- Total
안드로이드 앱 개발
ArrayList에 들어있는 객체들을 정렬하고 싶다... - Kotlin 본문
프로젝트를 하다보면,
ArrayList<T> 안에 있는 객체들을 정렬하고 싶을 때가 있다.
만약 T가 Class 형태라면 T의 요소들로 정렬을 할 수가 있다.
//data라는 arraylist안에 있는 객체<T>를 정리하는데, T의 customerName을 비교해서 정렬한다.
data.sortBy { T -> T.customerName }
dataForSearch.sortBy { T -> T.customerName }
//default값이 오름차순이기 때문에 내림차순으로 정리하고 싶다면 아래 함수를 사용한다.
data.sortByDescending { data1 -> data1.savedate }
dataForSearch.sortByDescending { data1 -> data1.savedate }