일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- high order function
- Error:Execution failed for task ':app:mergeDebugResources'
- Android
- 뷰변경 감지
- ActivityTestRule
- espresso
- recyclerview
- LayoutManger
- 스와이프
- 재사용
- 리사이클러뷰
- 테마 아이콘
- 안드로이드
- ui test
- 코딜리티
- searchview
- 코틀린
- Fragment 수동 추가
- 고차함수
- binding adapter
- 안드로이드13
- viewholder
- 생명주기
- Fragment에서 Activity의 함수 사용하기
- 구분선
- adapter
- fragment
- 안드로이드개발레벨업교과서
- 안드로이드스튜디오
- IntentTestRule
- Today
- Total
목록개발/안드로이드 개발 (101)
룬아님의 취중코딩
xml파일에서 key를 알파벳 순으로 정렬해주는 플러그인 https://plugins.jetbrains.com/plugin/8223-androidxmlsorter AndroidXmlSorter - IntelliJ IDEs Plugin | Marketplace Android Studio & IntelliJ Plugin for sort xml by name="xxx". 'Editor > PopupMenu(Right Click) > Refactor > Sort Xml By Name' Options - Insert space... plugins.jetbrains.com Kotlin 객체의 생성자를 자동으로 채워주는 플러그인, Dummy data를 채워주는 기능도 있다. https://plugins.jetbrai..
Kotlin code style에서 New line after multiline entry 항목을 해제해주면 자동으로 줄넘김이 들어가지 않는다.
Hilt에서 @AndroidEntryPoint를 적용하고 getContext를 하면 Activity의 context가 아닌 ViewComponentManager.FragmentContextWrapper 으로 context를 wrapping한 객체가 넘어오게 된다. 이 wrapper를 Activity로 형변환을 할 경우 크래시가 발생하기 때문에 requireActivity()를 이용하거나 val context = (parent.context as? ViewComponentManager.FragmentContextWrapper)?.baseContext ?: parent.context baseContext를 이용하여야 한다.