일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 구분선
- adapter
- 고차함수
- binding adapter
- searchview
- ui test
- LayoutManger
- fragment
- espresso
- Fragment에서 Activity의 함수 사용하기
- 뷰변경 감지
- 리사이클러뷰
- 안드로이드13
- IntentTestRule
- 안드로이드개발레벨업교과서
- ActivityTestRule
- recyclerview
- 코딜리티
- Android
- 테마 아이콘
- 안드로이드
- 안드로이드스튜디오
- 코틀린
- viewholder
- Fragment 수동 추가
- 스와이프
- Error:Execution failed for task ':app:mergeDebugResources'
- high order function
- 생명주기
- 재사용
- Today
- Total
목록분류 전체보기 (241)
룬아님의 취중코딩
https://medium.com/@er.ankitbisht/mvvm-model-view-viewmodel-kotlin-google-jetpack-f02ec7754854 MVVM (Model View ViewModel) + Kotlin + Google Jetpack Today, we are going to learn how we can develop an Android app using MVVM architecture. This post will be based on the Android… medium.com
1. 서비스에 주입할 모듈 작성 @Module abstract class ServiceBuilderModule { @ContributesAndroidInjector abstract MyService contributeMyService(); } 2. Application Component에 모듈 등록 @Component(modules = { AndroidSupportInjectionModule.class, AppModule.class, ActivityBuilderModule.class, ServiceBuilderModule.class }) @Singleton public interface AppComponent { @Component.Builder interface Builder { @BindsInstan..
1. Style로 바꾸어 주기 2. textCursorDrawable 이용하기 setTextCursorDrawable 함수를 이용하여 코드적으로도 수정가능 하지만 29이상의 버전부터 지원한다.