일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ActivityTestRule
- recyclerview
- 안드로이드
- 안드로이드개발레벨업교과서
- fragment
- searchview
- 안드로이드스튜디오
- 생명주기
- viewholder
- 코딜리티
- 구분선
- 코틀린
- 재사용
- 뷰변경 감지
- high order function
- espresso
- LayoutManger
- 고차함수
- adapter
- Fragment에서 Activity의 함수 사용하기
- Fragment 수동 추가
- 안드로이드13
- binding adapter
- Android
- ui test
- 스와이프
- Error:Execution failed for task ':app:mergeDebugResources'
- 테마 아이콘
- 리사이클러뷰
- IntentTestRule
- 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이상의 버전부터 지원한다.