일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- LayoutManger
- 구분선
- 뷰변경 감지
- binding adapter
- adapter
- 생명주기
- espresso
- 안드로이드스튜디오
- 재사용
- high order function
- 안드로이드
- viewholder
- 코틀린
- Fragment에서 Activity의 함수 사용하기
- recyclerview
- 안드로이드개발레벨업교과서
- Android
- ui test
- ActivityTestRule
- 리사이클러뷰
- 스와이프
- Fragment 수동 추가
- 고차함수
- IntentTestRule
- 코딜리티
- 테마 아이콘
- 안드로이드13
- Error:Execution failed for task ':app:mergeDebugResources'
- searchview
- fragment
- Today
- Total
목록분류 전체보기 (241)
룬아님의 취중코딩
https://d2.naver.com/helloworld/8725603 불러오는 중입니다...
https://codeburst.io/android-swipe-menu-with-recyclerview-8f28a235ff28 Android swipe menu with RecyclerView Using ItemTouchHelper Callback without any external libraries codeburst.io
https://medium.com/swlh/mvvm-on-android-with-the-architecture-components-koin-f53c3c200363 MVVM on Android with the Architecture Components + Koin As you can see the repository has a constructor with two parameters, the first one class that represent online data and the second… medium.com
class Todo(var todoInfo: String, var className: String, var dueDate: Date, var isCompleted: Boolean, var isNoDueDate: Boolean) data class Todo(var todoInfo: String, var className: String, var dueDate: Date, var isCompleted: Boolean, var isNoDueDate: Boolean) 앞에 data 키워드만 붙인것으로 어떤 차이가 있을까? java에서 클래스를 사용하여 toString을 사용하면 주소값이 나오기 때문에 toString을 override해주거나 equals 혹은 hashCode등을 직접 구현하는 경우가 있었다. ko..